1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pymongo,
6}:
7
8buildPythonPackage rec {
9 pname = "mongodict";
10 version = "0.3.1";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "0nv5amfs337m0gbxpjb0585s20rndqfc3mfrzq1iwgnds5gxcrlw";
16 };
17
18 propagatedBuildInputs = [ pymongo ];
19
20 meta = with lib; {
21 description = "MongoDB-backed Python dict-like interface";
22 homepage = "https://github.com/turicas/mongodict/";
23 license = licenses.gpl3;
24 };
25}