summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-02-22 10:16:58 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-02-22 10:16:58 +0100
commit05993aa484ac11abe1bf939a04231e70f1a8aab4 (patch)
tree60592fae9805fb7330d852f6941dde1a7d6d70c2 /pkgs
parent312494180d4644acba05ec133217748dec1f392b (diff)
parent2191fb106cf1cc5f0487fb3ce4031de9d9d0a34b (diff)
Merge pull request #13064 from desiderius/pyrsistent-0.11.12
pythonPackages.pyrsistent: init at 0.11.12
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index df742a5c84cf..1b125b6c938b 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -16884,6 +16884,28 @@ in modules // {
};
});
+ pyrsistent = buildPythonPackage (rec {
+ name = "pyrsistent-0.11.12";
+
+ src = pkgs.fetchurl {
+ url = "http://pypi.python.org/packages/source/p/pyrsistent/${name}.tar.gz";
+ sha256 = "0jgyhkkq36wn36rymn4jiyqh2vdslmradq4a2mjkxfbk2cz6wpi5";
+ };
+
+ buildInputs = with self; [ six pytest hypothesis ] ++ optional (!isPy3k) modules.sqlite3;
+
+ checkPhase = ''
+ py.test
+ '';
+
+ meta = {
+ homepage = http://github.com/tobgu/pyrsistent/;
+ description = "Persistent/Functional/Immutable data structures";
+ license = licenses.mit;
+ maintainers = with maintainers; [ desiderius ];
+ };
+ });
+
pyrss2gen = buildPythonPackage (rec {
name = "PyRSS2Gen-1.0.0";