1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "interegular";
9 version = "0.3.3";
10 src = fetchPypi {
11 inherit pname version;
12 hash = "sha256-2baXshs0iEcROZug8DdpFLgYmc5nADJIbQ0Eg0SnZgA=";
13 };
14
15 pythonImportsCheck = [ "interegular" ];
16
17 meta = with lib; {
18 description = "Library to check a subset of python regexes for intersections";
19 homepage = "https://github.com/MegaIng/interegular";
20 license = licenses.mit;
21 maintainers = with maintainers; [ lach ];
22 };
23}