mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
pythonPackages.tappy: init at 3.0
This commit is contained in:
parent
76e6e4b519
commit
9101fbb0ae
29
pkgs/development/python-modules/tappy/default.nix
Normal file
29
pkgs/development/python-modules/tappy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user