pythonPackages.patiencediff: init at 0.2.1

This commit is contained in:
Sebastian Wild 2020-12-06 22:38:21 +01:00 committed by Orivej Desh
parent d0207e3152
commit 60651e35e4
2 changed files with 20 additions and 0 deletions

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

@ -4474,6 +4474,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 { };