pythonPackages.persisting-theory: init at 0.2.1

This commit is contained in:
Henri Bourcereau 2019-09-23 12:16:30 +02:00 committed by worldofpeace
parent 5417887d7a
commit 1d88cddcbf
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi
, nose
}:
buildPythonPackage rec {
pname = "persisting-theory";
version = "0.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "02hcg7js23yjyw6gwxqzvyv2b1wfjrypk98cfxfgf7s8iz67vzq0";
};
checkInputs = [ nose ];
checkPhase = "nosetests";
meta = with stdenv.lib; {
homepage = https://code.eliotberriot.com/eliotberriot/persisting-theory;
description = "Automate data discovering and access inside a list of packages";
license = licenses.bsd3;
maintainers = with maintainers; [ mmai ];
};
}

View file

@ -3886,6 +3886,8 @@ in {
neuronpy = callPackage ../development/python-modules/neuronpy { };
persisting-theory = callPackage ../development/python-modules/persisting-theory { };
pint = callPackage ../development/python-modules/pint { };
pygal = callPackage ../development/python-modules/pygal { };