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