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.6.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 = "0farwkw0nbb5h4369pq3i6pp4047hav0h88ba55rzz5k7mr25rgi";
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 ];
};
}