deep-chainmap: init at 0.1.1

This commit is contained in:
Rehno Lindeque 2022-09-15 19:00:57 +00:00
parent 5421a09684
commit fb79eb938f
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "deep-chainmap";
version = "0.1.1";
src = fetchPypi {
pname = "deep_chainmap";
inherit version;
sha256 = "sha256-6K7dyB5iQzzw3lXLcU10SVsiHZ+SAXhz9DSCkYnPQAA=";
};
# Tests are not published to pypi
doCheck = false;
pythonImportsCheck = [ "deep_chainmap" ];
# See the guide for more information: https://nixos.org/nixpkgs/manual/#chap-meta
meta = with lib; {
description = "A recursive subclass of ChainMap";
homepage = "https://github.com/neutrinoceros/deep-chainmap";
license = licenses.mit;
maintainers = with maintainers; [ rehno-lindeque ];
};
}

View File

@ -2336,6 +2336,8 @@ in {
deemix = callPackage ../development/python-modules/deemix { };
deep-chainmap = callPackage ../development/python-modules/deep-chainmap { };
deep_merge = callPackage ../development/python-modules/deep_merge { };
deepdiff = callPackage ../development/python-modules/deepdiff { };