nixpkgs/pkgs/development/python-modules/phx-class-registry/default.nix
2023-07-23 19:30:22 +02:00

35 lines
709 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "class-registry";
version = "4.0.6";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "todofixthis";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-kSEHgzBgnAq5rMv2HbmGl+9CUzsmzUzPQWr+5q8mcsA=";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"class_registry"
];
meta = with lib; {
description = "Factory and registry pattern for Python classes";
homepage = "https://class-registry.readthedocs.io/en/latest/";
license = licenses.mit;
maintainers = with maintainers; [ kevincox ];
};
}