depot/third_party/nixpkgs/pkgs/development/python-modules/pycotap/default.nix
Default email 92b3d6365d Project import generated by Copybara.
GitOrigin-RevId: 412b9917cea092f3d39f9cd5dead4effd5bc4053
2022-10-30 16:09:59 +01:00

18 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 ];
};
}