2022-10-30 15:09:59 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pycotap";
|
|
|
|
version = "1.2.2";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-+Tjs1JMczRnZWY+2M9Xqu3k48IuEcXMV5SUmqmJ3yew=";
|
2022-10-30 15:09:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|