Files
nixpkgs/pkgs/development/python-modules/sre-yield/default.nix
Martin Weinelt 266c161842 python312Packages: cleanup instances of doCheck = true
This is implicitly the case, and unless `doCheck` is referenced it makes
no sense setting it.
2024-10-26 01:47:02 +02:00

32 lines
711 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "sre-yield";
version = "1.2";
format = "setuptools";
src = fetchPypi {
pname = "sre_yield";
inherit version;
hash = "sha256-6U8aKjy6//4dzRXB1U5AGhUX4FKqZMfTFk+I3HYde4o=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [ unittestCheckHook ];
meta = with lib; {
description = "Python library to efficiently generate all values that can match a given regular expression";
mainProgram = "demo_sre_yield";
homepage = "https://github.com/sre-yield/sre-yield";
license = licenses.asl20;
maintainers = with maintainers; [ danc86 ];
};
}