587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
24 lines
526 B
Nix
24 lines
526 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "interegular";
|
|
version = "0.3.3";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-2baXshs0iEcROZug8DdpFLgYmc5nADJIbQ0Eg0SnZgA=";
|
|
};
|
|
|
|
pythonImportsCheck = [
|
|
"interegular"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A library to check a subset of python regexes for intersections";
|
|
homepage = "https://github.com/MegaIng/interegular";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lach ];
|
|
};
|
|
}
|