about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycotap/default.nix
blob: df7591459e2d3f1c235061ee45dfea79dfbe4d8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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 ];
  };
}