11 buildPythonPackage rec {
12 pname = "class-registry";
16 inherit pname version;
17 sha256 = "0zjf9nczl1ifzj07bgs6mwxsfd5xck9l0lchv2j0fv2n481xp2v7";
20 propagatedBuildInputs = [ six ] ++ lib.optional isPy27 typing;
21 checkInputs = [ nose ];
23 # Tests currently failing.
27 description = "Factory+Registry pattern for Python classes.";
28 homepage = "https://class-registry.readthedocs.io/en/latest/";
29 license = lib.licenses.mit;
30 maintainers = with lib.maintainers; [ kevincox ];