fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
31 lines
723 B
Nix
31 lines
723 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
pythonOlder,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tap.py";
|
|
version = "3.1";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "3c0cd45212ad5a25b35445964e2517efa000a118a1bfc3437dae828892eaf1e1";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "tap" ];
|
|
|
|
meta = with lib; {
|
|
description = "A set of tools for working with the Test Anything Protocol (TAP) in Python";
|
|
homepage = "https://github.com/python-tap/tappy";
|
|
changelog = "https://tappy.readthedocs.io/en/latest/releases.html";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ sfrijters ];
|
|
};
|
|
}
|