1{
2 lib,
3 buildPythonPackage,
4 pythonOlder,
5 fetchPypi,
6 pytestCheckHook,
7}:
8
9buildPythonPackage rec {
10 pname = "tap.py";
11 version = "3.1";
12
13 disabled = pythonOlder "3.6";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "3c0cd45212ad5a25b35445964e2517efa000a118a1bfc3437dae828892eaf1e1";
18 };
19
20 nativeCheckInputs = [ pytestCheckHook ];
21
22 pythonImportsCheck = [ "tap" ];
23
24 meta = with lib; {
25 description = "A set of tools for working with the Test Anything Protocol (TAP) in Python";
26 homepage = "https://github.com/python-tap/tappy";
27 changelog = "https://tappy.readthedocs.io/en/latest/releases.html";
28 license = licenses.bsd2;
29 maintainers = with maintainers; [ sfrijters ];
30 };
31}