aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/persisting-theory
diff options
context:
space:
mode:
authorHenri Bourcereau <henri.bourcereau@gmail.com>2019-09-23 12:16:30 +0200
committerworldofpeace <worldofpeace@protonmail.ch>2019-10-16 17:07:10 -0400
commit1d88cddcbfb5fe8010c8ae8f4998941c02856f67 (patch)
tree0bfe8f1aeb6c87f5b6a01555afc9b1abf7eb514e /pkgs/development/python-modules/persisting-theory
parent5417887d7a04e853d3f17e86d05ba44ca6a05f3a (diff)
pythonPackages.persisting-theory: init at 0.2.1
Diffstat (limited to 'pkgs/development/python-modules/persisting-theory')
-rw-r--r--pkgs/development/python-modules/persisting-theory/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/persisting-theory/default.nix b/pkgs/development/python-modules/persisting-theory/default.nix
new file mode 100644
index 000000000000..3e729c2149ed
--- /dev/null
+++ b/pkgs/development/python-modules/persisting-theory/default.nix
@@ -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 ];
+ };
+}