mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
25 lines
472 B
Nix
25 lines
472 B
Nix
{ 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;
|
|
};
|
|
|
|
}
|