9 buildPythonPackage rec {
12 format = "setuptools";
15 # PyPI tarball doesn't include tests directory
16 src = fetchFromGitHub {
20 sha256 = "1msvvdzk33sxzgyvs4fs8dlsrsi7fjj038z83s0yw5h8m8d78469";
23 nativeCheckInputs = [ pytest ];
24 checkPhase = "pytest";
25 pythonImportsCheck = [ "mergedeep" ];
28 homepage = "https://github.com/clarketm/mergedeep";
29 description = "Deep merge function for python";
30 license = licenses.mit;
31 maintainers = with maintainers; [ ris ];