Files
nixpkgs/pkgs/development/python-modules/interegular/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
548 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "interegular";
version = "0.3.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-2baXshs0iEcROZug8DdpFLgYmc5nADJIbQ0Eg0SnZgA=";
};
pythonImportsCheck = [ "interegular" ];
meta = with lib; {
description = "Library to check a subset of python regexes for intersections";
homepage = "https://github.com/MegaIng/interegular";
license = licenses.mit;
maintainers = with maintainers; [ lach ];
};
}