2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-26 03:06:50 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pymongo
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "mongodict";
|
|
|
|
version = "0.3.1";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0nv5amfs337m0gbxpjb0585s20rndqfc3mfrzq1iwgnds5gxcrlw";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pymongo ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-26 03:06:50 +01:00
|
|
|
description = "MongoDB-backed Python dict-like interface";
|
|
|
|
homepage = "https://github.com/turicas/mongodict/";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|