about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pymongo
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-01-22 12:05:10 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-01-22 12:05:13 +0100
commitbf3f26a0ebce19a34d942252a5c4883e8d20bdd6 (patch)
tree270c702c34ab35c4f5c4d47d2b23a50cde6704d7 /pkgs/development/python-modules/pymongo
parent5bee7acfe4141f370499ff592f0ab958df55cab3 (diff)
python.pkgs.pymongo_2_9_1: remove
It is no longer used.
Diffstat (limited to 'pkgs/development/python-modules/pymongo')
-rw-r--r--pkgs/development/python-modules/pymongo/2_9_1.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/development/python-modules/pymongo/2_9_1.nix b/pkgs/development/python-modules/pymongo/2_9_1.nix
deleted file mode 100644
index 8e0b0858754d2..0000000000000
--- a/pkgs/development/python-modules/pymongo/2_9_1.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-}:
-
-buildPythonPackage rec {
-  pname = "pymongo";
-  version = "2.9.5";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "912516ac6a355d7624374a38337b8587afe3eb535c0a5456b3bd12df637a6e70";
-  };
-
-  # Tests call a running mongodb instance
-  doCheck = false;
-
-  meta = with stdenv.lib; {
-    homepage = https://github.com/mongodb/mongo-python-driver;
-    license = licenses.asl20;
-    description = "Python driver for MongoDB ";
-  };
-
-}