pythonPackages.patiencediff: init at 0.2.1; breezy: fix build (#106100)

This commit is contained in:
Orivej Desh (NixOS) 2020-12-07 21:10:09 +00:00 committed by GitHub
commit 6acae29481
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 1 deletions

View file

@ -9464,6 +9464,16 @@
githubId = 19174984;
name = "Alex Whitt";
};
wildsebastian = {
name = "Sebastian Wild";
email = "sebastian@wild-siena.com";
github = "wildsebastian";
githubId = 1215623;
keys = [{
longkeyid = "rsa4096/0x366A2940479A06FC";
fingerprint = "DA03 D6C6 3F58 E796 AD26 E99B 366A 2940 479A 06FC";
}];
};
willibutz = {
email = "willibutz@posteo.de";
github = "willibutz";

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, configobj
, patiencediff
, six
, fastimport
, dulwich
@ -18,7 +19,7 @@ buildPythonPackage rec {
sha256 = "1eff207403f48898fa3b3ffa7a4275197c6c58fec105ef267caf1f5fd5a6c7be";
};
propagatedBuildInputs = [ configobj six fastimport dulwich launchpadlib ];
propagatedBuildInputs = [ configobj patiencediff six fastimport dulwich launchpadlib ];
checkInputs = [ testtools ];

View file

@ -0,0 +1,18 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "patiencediff";
version = "0.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "0nm2242xgg59l06m54rzxp41aly3lxjh0a1s7h6dk7ryxjh002lv";
};
meta = with lib; {
description = "C implementation of patiencediff algorithm for Python";
homepage = "https://github.com/breezy-team/patiencediff";
license = licenses.gpl2Plus;
maintainers = [ maintainers.wildsebastian ];
};
}

View file

@ -4486,6 +4486,8 @@ in {
pathtools = callPackage ../development/python-modules/pathtools { };
patiencediff = callPackage ../development/python-modules/patiencediff { };
patool = callPackage ../development/python-modules/patool { };
patsy = callPackage ../development/python-modules/patsy { };