at 22.05-pre 625 B view raw
1{ lib 2, buildPythonPackage 3, pythonOlder 4, fetchPypi 5, pytestCheckHook 6}: 7 8buildPythonPackage rec { 9 pname = "tap.py"; 10 version = "3.0"; 11 12 disabled = pythonOlder "3.5"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "sha256-9e7u6/1k5T0yZhdSu0wohYmjuru5bbPzkaTsKfE1nHA="; 17 }; 18 19 checkInputs = [ pytestCheckHook ]; 20 21 pythonImportsCheck = [ "tap" ]; 22 23 meta = with lib; { 24 homepage = "https://github.com/python-tap/tappy"; 25 description = "A set of tools for working with the Test Anything Protocol (TAP) in Python"; 26 license = licenses.bsd2; 27 maintainers = with maintainers; [ sfrijters ]; 28 }; 29}