1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-05 23:32:35 +03:00
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

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