pythonPackages.tappy: init at 3.0

This commit is contained in:
Stefan Frijters 2021-04-03 11:06:49 +02:00 committed by Jan Tojnar
parent 76e6e4b519
commit 9101fbb0ae
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "tap.py";
version = "3.0";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-9e7u6/1k5T0yZhdSu0wohYmjuru5bbPzkaTsKfE1nHA=";
};
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "tap" ];
meta = with lib; {
homepage = "https://github.com/python-tap/tappy";
description = "A set of tools for working with the Test Anything Protocol (TAP) in Python";
license = licenses.bsd2;
maintainers = with maintainers; [ sfrijters ];
};
}

View file

@ -7886,6 +7886,8 @@ in {
tailer = callPackage ../development/python-modules/tailer { };
tappy = callPackage ../development/python-modules/tappy { };
tasklib = callPackage ../development/python-modules/tasklib { };
taskw = callPackage ../development/python-modules/taskw { };