summary refs log tree commit diff
path: root/pkgs/development/python-modules/deep_merge/default.nix
blob: ad879347367c8dcab37cab4238f12faa1c94910d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildPythonPackage, fetchPypi, nose }:

buildPythonPackage rec {
  pname = "deep_merge";
  version = "0.0.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "tUQV+Qk0xC4zQRTihky01OczWzStOW41rYYQyWBlpH4=";
  };

  nativeCheckInputs = [
    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 ];
  };
}