emacsPackages.lsp-bridge: 0-unstable-2025-01-11 -> 0-unstable-2025-01-22 (#376531)
[NixPkgs.git] / pkgs / development / python-modules / mongodict / default.nix
blobcb18f270726e85889db49bfcda577d22c4b72fd3
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pymongo,
6 }:
8 buildPythonPackage rec {
9   pname = "mongodict";
10   version = "0.3.1";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0nv5amfs337m0gbxpjb0585s20rndqfc3mfrzq1iwgnds5gxcrlw";
16   };
18   propagatedBuildInputs = [ pymongo ];
20   meta = with lib; {
21     description = "MongoDB-backed Python dict-like interface";
22     homepage = "https://github.com/turicas/mongodict/";
23     license = licenses.gpl3;
24   };