46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
28 lines
826 B
Nix
28 lines
826 B
Nix
{ stdenv, fetchurl, pkgconfig, check, cppunit, perl, pythonPackages }:
|
|
|
|
# NOTE: for subunit python library see pkgs/top-level/python-packages.nix
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "subunit";
|
|
version = "1.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://launchpad.net/subunit/trunk/${version}/+download/${pname}-${version}.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;
|
|
};
|
|
}
|