deep-chainmap: init at 0.1.1
This commit is contained in:
parent
5421a09684
commit
fb79eb938f
28
pkgs/development/python-modules/deep-chainmap/default.nix
Normal file
28
pkgs/development/python-modules/deep-chainmap/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user