pymongo: 3.0.3 -> 3.5.1

This commit is contained in:
Samuel Leathers
2017-09-13 22:37:32 -04:00
committed by Franz Pletz
parent 20f949376f
commit 756cd8a6c4
2 changed files with 21 additions and 16 deletions

View File

@@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pymongo";
version = "3.5.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0939bl3brrklvccicck62gs3zd7i9aysz13c8pxc3gpk2hsdj878";
};
doCheck = false;
meta = with stdenv.lib; {
homepage = "http://github.com/mongodb/mongo-python-driver";
license = licenses.asl20;
description = "Python driver for MongoDB ";
};
}