python310Packages.patiencediff: enable tests

- add pythonImportsCheck
- disable on older Python releases
main
Fabian Affolter 2 years ago committed by GitHub
parent b17d484c7e
commit 52fb09e26b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 28
      pkgs/development/python-modules/patiencediff/default.nix

@ -1,18 +1,36 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "patiencediff";
version = "0.2.6";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-wdaNB6VzqeLEt5HBMIki08j08aRuc11l4wg8J01e5Fk=";
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 ];
};
}

Loading…
Cancel
Save