deep_merge: init at 0.0.4

Co-authored-by: Guillaume Girol <symphorien@users.noreply.github.com>
This commit is contained in:
Le Anh Duc 2020-12-23 14:10:27 +09:00
parent 90b522e0c6
commit 7dc9da6eed
No known key found for this signature in database
GPG Key ID: D30B5F1BCF43BFDC
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, nose }:
buildPythonPackage rec {
pname = "deep_merge";
version = "0.0.4";
src = fetchPypi {
inherit pname version;
sha256 = "tUQV+Qk0xC4zQRTihky01OczWzStOW41rYYQyWBlpH4=";
};
checkInputs = [
nose
];
doCheck = false;
meta = with lib; {
description = "This library contains a simple utility for deep-merging dictionaries and the data structures they contain";
homepage = "https://github.com/halfak/deep_merge";
license = licenses.mit;
maintainers = [ maintainers.anhdle14 ];
};
}

View File

@ -808,6 +808,7 @@ in {
bayespy = callPackage ../development/python-modules/bayespy { };
bc-python-hcl2 = callPackage ../development/python-modules/bc-python-hcl2 { };
bcdoc = callPackage ../development/python-modules/bcdoc { };
bcrypt = if pythonOlder "3.6" then
@ -1545,6 +1546,8 @@ in {
decorator = callPackage ../development/python-modules/decorator { };
deep_merge = callPackage ../development/python-modules/deep_merge { };
deepdiff = callPackage ../development/python-modules/deepdiff { };
deepmerge = callPackage ../development/python-modules/deepmerge { };