1{ lib, buildPythonPackage, fetchPypi, nose }:
2
3buildPythonPackage rec {
4 pname = "deep_merge";
5 version = "0.0.4";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "tUQV+Qk0xC4zQRTihky01OczWzStOW41rYYQyWBlpH4=";
10 };
11
12 nativeCheckInputs = [
13 nose
14 ];
15
16 doCheck = false;
17
18 meta = with lib; {
19 description = "This library contains a simple utility for deep-merging dictionaries and the data structures they contain";
20 homepage = "https://github.com/halfak/deep_merge";
21 license = licenses.mit;
22 maintainers = [ maintainers.anhdle14 ];
23 };
24}