nixpkgs/pkgs/development/python-modules/unidiff/default.nix

22 lines
564 B
Nix
Raw Normal View History

2018-12-25 23:00:00 +00:00
{ lib, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage rec {
pname = "unidiff";
version = "0.7.0";
2018-12-25 23:00:00 +00:00
# PyPI tarball doesn't ship tests
src = fetchFromGitHub {
owner = "matiasb";
repo = "python-unidiff";
rev = "v${version}";
sha256 = "1s1l327jqm0r35pn9c83pbw15k66x8klw1lf45xqp8lrdc15cqv5";
2018-12-25 23:00:00 +00:00
};
meta = with lib; {
description = "Unified diff python parsing/metadata extraction library";
homepage = "https://github.com/matiasb/python-unidiff";
2018-12-25 23:00:00 +00:00
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}