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/patch/default.nix

26 lines
562 B

{ lib
, buildPythonPackage
, fetchzip
}:
buildPythonPackage rec {
version = "1.16";
pname = "patch";
src = fetchzip {
url = "mirror://pypi/p/${pname}/${pname}-${version}.zip";
sha256 = "1nj55hvyvzax4lxq7vkyfbw91pianzr3hp7ka7j12pgjxccac50g";
stripRoot = false;
};
# No tests included in archive
doCheck = false;
meta = with lib; {
description = "A library to parse and apply unified diffs";
homepage = "https://github.com/techtonik/python-patch/";
license = licenses.mit;
maintainers = [ maintainers.igsha ];
};
}