blob: 1d8996336ad5b8fce36e1b6041db534e87ce0ca5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "pycotap";
version = "1.3.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-Z0NV8BMAvgPff4cXhOSYZSwtiawZzXfujmFlJjSi+Do=";
};
meta = {
description = "Test runner for unittest that outputs TAP results to stdout";
homepage = "https://el-tramo.be/pycotap";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mwolfe ];
};
}
|