nixpkgs/pkgs/development/python-modules/tappy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
716 B
Nix
Raw Normal View History

2021-04-03 09:06:49 +00:00
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "tap.py";
2022-01-14 00:59:02 +00:00
version = "3.1";
2021-04-03 09:06:49 +00:00
disabled = pythonOlder "3.6";
2021-04-03 09:06:49 +00:00
src = fetchPypi {
inherit pname version;
2022-01-14 00:59:02 +00:00
sha256 = "3c0cd45212ad5a25b35445964e2517efa000a118a1bfc3437dae828892eaf1e1";
2021-04-03 09:06:49 +00:00
};
nativeCheckInputs = [ pytestCheckHook ];
2021-04-03 09:06:49 +00:00
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";
2021-04-03 09:06:49 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ sfrijters ];
};
}