blob: 8b0bc86bf02a20a7f014b279ec54aaa8dc33932c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{ 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 ];
};
}
|