pythonPackages.class-registry: init at 2.1.2
This commit is contained in:
parent
25f78a8cfe
commit
36a68c8e82
30
pkgs/development/python-modules/class-registry/default.nix
Normal file
30
pkgs/development/python-modules/class-registry/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
lib,
|
||||
nose,
|
||||
six,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "class-registry";
|
||||
version = "2.1.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0zjf9nczl1ifzj07bgs6mwxsfd5xck9l0lchv2j0fv2n481xp2v7";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
checkInputs = [ nose ];
|
||||
|
||||
# Tests currently failing.
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Factory+Registry pattern for Python classes.";
|
||||
homepage = "https://class-registry.readthedocs.io/en/latest/";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ kevincox ];
|
||||
};
|
||||
}
|
@ -1150,6 +1150,8 @@ in {
|
||||
|
||||
ckcc-protocol = callPackage ../development/python-modules/ckcc-protocol { };
|
||||
|
||||
class-registry = callPackage ../development/python-modules/class-registry { };
|
||||
|
||||
cld2-cffi = callPackage ../development/python-modules/cld2-cffi { };
|
||||
|
||||
cleo = callPackage ../development/python-modules/cleo { };
|
||||
|
Loading…
Reference in New Issue
Block a user