nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "pycotap";
9 version = "1.3.1";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-Z0NV8BMAvgPff4cXhOSYZSwtiawZzXfujmFlJjSi+Do=";
15 };
16
17 meta = {
18 description = "Test runner for unittest that outputs TAP results to stdout";
19 homepage = "https://el-tramo.be/pycotap";
20 license = lib.licenses.mit;
21 maintainers = with lib.maintainers; [ mwolfe ];
22 };
23}