pythonPackages.mongodict: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
942484324e
commit
fc46fb16c1
24
pkgs/development/python-modules/mongodict/default.nix
Normal file
24
pkgs/development/python-modules/mongodict/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pymongo
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mongodict";
|
||||
version = "0.3.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0nv5amfs337m0gbxpjb0585s20rndqfc3mfrzq1iwgnds5gxcrlw";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pymongo ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "MongoDB-backed Python dict-like interface";
|
||||
homepage = "https://github.com/turicas/mongodict/";
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user