blob: b46f4c8f1846d677ecdd1db81dbd8776172536d4 (
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
|
{
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];
};
}
|