python3Packages.phx-class-registry: init at 3.0.5
This commit is contained in:
parent
f644b9fc79
commit
bffb773018
2 changed files with 30 additions and 0 deletions
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, isPy27, pytestCheckHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "phx-class-registry";
|
||||
version = "3.0.5";
|
||||
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "14iap8db2ldmnlf5kvxs52aps31rl98kpa5nq8wdm30a86n6457i";
|
||||
};
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
disabledTests = [
|
||||
"test_branding"
|
||||
"test_happy_path"
|
||||
"test_len"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Registry pattern for Python classes, with setuptools entry points integration";
|
||||
homepage = "https://github.com/todofixthis/class-registry";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
|
@ -4505,6 +4505,8 @@ in {
|
|||
|
||||
phpserialize = callPackage ../development/python-modules/phpserialize { };
|
||||
|
||||
phx-class-registry = callPackage ../development/python-modules/phx-class-registry { };
|
||||
|
||||
piccata = callPackage ../development/python-modules/piccata { };
|
||||
|
||||
pickleshare = callPackage ../development/python-modules/pickleshare { };
|
||||
|
|
Loading…
Reference in a new issue