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