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