blob: cc5a193a52c89fc34f4fe7ac469a3d6801e18d75 (
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,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "interegular";
version = "0.3.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-2baXshs0iEcROZug8DdpFLgYmc5nADJIbQ0Eg0SnZgA=";
};
pythonImportsCheck = [ "interegular" ];
meta = {
description = "Library to check a subset of python regexes for intersections";
homepage = "https://github.com/MegaIng/interegular";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ lach ];
};
}
|