pythonPackages.unidiff: init at 0.5.5
This commit is contained in:
parent
23ebff30a3
commit
17eb96dabd
21
pkgs/development/python-modules/unidiff/default.nix
Normal file
21
pkgs/development/python-modules/unidiff/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "unidiff";
|
||||||
|
version = "0.5.5";
|
||||||
|
|
||||||
|
# PyPI tarball doesn't ship tests
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "matiasb";
|
||||||
|
repo = "python-unidiff";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1nvi7s1nn5p7j6aql1nkn2kiadnfby98yla5m3jq8xwsx0aplwdm";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Unified diff python parsing/metadata extraction library";
|
||||||
|
homepage = https://github.com/matiasb/python-unidiff;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.marsam ];
|
||||||
|
};
|
||||||
|
}
|
@ -4382,6 +4382,8 @@ in {
|
|||||||
|
|
||||||
unicodecsv = callPackage ../development/python-modules/unicodecsv { };
|
unicodecsv = callPackage ../development/python-modules/unicodecsv { };
|
||||||
|
|
||||||
|
unidiff = callPackage ../development/python-modules/unidiff { };
|
||||||
|
|
||||||
unittest2 = callPackage ../development/python-modules/unittest2 { };
|
unittest2 = callPackage ../development/python-modules/unittest2 { };
|
||||||
|
|
||||||
unittest-xml-reporting = callPackage ../development/python-modules/unittest-xml-reporting { };
|
unittest-xml-reporting = callPackage ../development/python-modules/unittest-xml-reporting { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user