pythonPackages.patiencediff: init at 0.2.1
This commit is contained in:
parent
d0207e3152
commit
60651e35e4
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4474,6 +4474,8 @@ in {
|
|||||||
|
|
||||||
pathtools = callPackage ../development/python-modules/pathtools { };
|
pathtools = callPackage ../development/python-modules/pathtools { };
|
||||||
|
|
||||||
|
patiencediff = callPackage ../development/python-modules/patiencediff { };
|
||||||
|
|
||||||
patool = callPackage ../development/python-modules/patool { };
|
patool = callPackage ../development/python-modules/patool { };
|
||||||
|
|
||||||
patsy = callPackage ../development/python-modules/patsy { };
|
patsy = callPackage ../development/python-modules/patsy { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user