nixpkgs/pkgs/development/python-modules/deep_merge/default.nix
Le Anh Duc 7dc9da6eed
deep_merge: init at 0.0.4
Co-authored-by: Guillaume Girol <symphorien@users.noreply.github.com>
2021-01-03 19:37:57 +09:00

25 lines
584 B
Nix

{ 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 ];
};
}