python.pkgs.pymongo_2_9_1: remove

It is no longer used.
This commit is contained in:
Robert Schütz
2019-01-22 12:05:10 +01:00
parent 5bee7acfe4
commit bf3f26a0eb
2 changed files with 0 additions and 26 deletions

View File

@@ -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 ";
};
}