pythonPackages.class-registry: init at 2.1.2

This commit is contained in:
Kevin Cox 2020-09-25 16:29:42 -04:00
parent 25f78a8cfe
commit 36a68c8e82
No known key found for this signature in database
GPG key ID: 9BB92CC1552E99AA
2 changed files with 32 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };