531e4b80c9
Only acts on one-line dependency lists.
28 lines
824 B
Nix
28 lines
824 B
Nix
{ stdenv, fetchurl, pkgconfig, check, cppunit, perl, pythonPackages }:
|
|
|
|
# NOTE: for subunit python library see pkgs/top-level/python-packages.nix
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "subunit-${version}";
|
|
version = "1.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://launchpad.net/subunit/trunk/${version}/+download/${name}.tar.gz";
|
|
sha256 = "0lcah7p66c05p7xpw6ns1is0i02lh0nq8gq51mv4wyvbr6zaasa8";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ check cppunit perl pythonPackages.wrapPython ];
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ testtools testscenarios ];
|
|
|
|
postFixup = "wrapPythonPrograms";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A streaming protocol for test results";
|
|
homepage = https://launchpad.net/subunit;
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|