summaryrefslogtreecommitdiff
path: root/Biz/Bild/Deps/interegular.nix
blob: 24065d8fa30a40e8804e0c76c213e231bc58d457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, sources, buildPythonPackage }:

buildPythonPackage rec {
  pname = "interegular";
  version = sources.interegular.rev;
  format = "setuptools";

  src = sources.interegular;

  propagatedBuildInputs = [ ];

  doCheck = false; # no tests currently
  pythonImportsCheck = [ "interegular" ];

  meta = with lib; {
    description = "Allows to check regexes for overlaps.";
    homepage = "https://github.com/MegaIng/interegular";
    license = licenses.mit;
    maintainers = with maintainers; [ bsima ];
  };
}