linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / deep_merge / default.nix
blob533bc6aa347759bec0f3fd27d65afff187dcd989
1 { lib, buildPythonPackage, fetchPypi, pytestCheckHook, nose }:
3 buildPythonPackage rec {
4   pname = "deep_merge";
5   version = "0.0.4";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "tUQV+Qk0xC4zQRTihky01OczWzStOW41rYYQyWBlpH4=";
10   };
12   checkInputs = [
13     nose
14   ];
16   doCheck = false;
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   };