My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/mergedeep/default.nix

26 lines
682 B

{ lib, buildPythonPackage, isPy27, fetchFromGitHub, pytest }:
buildPythonPackage rec {
pname = "mergedeep";
version = "1.3.4";
disabled = isPy27;
# PyPI tarball doesn't include tests directory
src = fetchFromGitHub {
owner = "clarketm";
repo = "mergedeep";
rev = "v${version}";
sha256 = "1msvvdzk33sxzgyvs4fs8dlsrsi7fjj038z83s0yw5h8m8d78469";
};
checkInputs = [ pytest ];
checkPhase = "pytest";
pythonImportsCheck = [ "mergedeep" ];
meta = with lib; {
homepage = "https://github.com/clarketm/mergedeep";
description = "A deep merge function for python";
license = licenses.mit;
maintainers = with maintainers; [ ris ];
};
}