mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
pythonPackages.patiencediff: init at 0.2.1; breezy: fix build (#106100)
This commit is contained in:
commit
6acae29481
@ -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";
|
||||
|
@ -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 ];
|
||||
|
||||
|
18
pkgs/development/python-modules/patiencediff/default.nix
Normal file
18
pkgs/development/python-modules/patiencediff/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user