Merge pull request #196870 from r-ryantm/auto-update/python310Packages.patiencediff

python310Packages.patiencediff: 0.2.3 -> 0.2.6
This commit is contained in:
Fabian Affolter 2022-10-20 12:05:44 +02:00 committed by GitHub
commit 3c74022319
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,36 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "patiencediff";
version = "0.2.3";
version = "0.2.6";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ATyTGFDomGUY8e53krBJzVgab7ked73fbIIwp63+tzI=";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "breezy-team";
repo = pname;
rev = "v${version}";
hash = "sha256-oJOsqZ9XCbYHJ7VEbDpC9wquCkvfj05M0nerlV5jL7w=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"patiencediff"
];
meta = with lib; {
description = "C implementation of patiencediff algorithm for Python";
homepage = "https://github.com/breezy-team/patiencediff";
license = licenses.gpl2Plus;
maintainers = [ maintainers.wildsebastian ];
maintainers = with maintainers; [ wildsebastian ];
};
}