about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/subunit/default.nix
blob: ed0c5a2d872022736dd6f6abb44b56c52019aadc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, stdenv, fetchurl, pkg-config, check, cppunit, perl, python3Packages }:

# NOTE: for subunit python library see pkgs/top-level/python-packages.nix

stdenv.mkDerivation rec {
  pname = "subunit";
  version = "1.4.2";

  src = fetchurl {
    url = "https://launchpad.net/subunit/trunk/${version}/+download/${pname}-${version}.tar.gz";
    hash = "sha256-hlOOv6kIC97w7ICVsuXeWrsUbVu3tCSzEVKUHXYG2dI=";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ check cppunit perl python3Packages.wrapPython ];

  propagatedBuildInputs = with python3Packages; [ testtools testscenarios ];

  postFixup = "wrapPythonPrograms";

  meta = with lib; {
    description = "A streaming protocol for test results";
    mainProgram = "subunit-diff";
    homepage = "https://launchpad.net/subunit";
    license = licenses.asl20;
    platforms = platforms.all;
  };
}