Merge pull request #191374 from rehno-lindeque/deep-chainmap-0.1.1

python310Packages.deep-chainmap: init at 0.1.1
This commit is contained in:
Jonas Heinrich 2022-09-16 15:12:44 +02:00 committed by GitHub
commit f8cc46e493
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -2340,6 +2340,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 { };