nixpkgs/pkgs/development/python-modules/pycotap/default.nix
Morgan Wolfe a385c00ee2 python3Packages.pycotap: init at 1.2.2
Required by pysolfc 2.16.0.
2022-09-27 22:45:50 -07:00

19 lines
461 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pycotap";
version = "1.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-+Tjs1JMczRnZWY+2M9Xqu3k48IuEcXMV5SUmqmJ3yew=";
};
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 ];
};
}