subunit: split package into everything and python lib

This commit is contained in:
Domen Kožar
2015-05-10 11:39:42 +02:00
parent 7142d47991
commit 90ee280913
4 changed files with 34 additions and 20 deletions

View File

@@ -0,0 +1,26 @@
{ 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.0.0";
src = fetchurl {
url = "https://launchpad.net/subunit/trunk/${version}/+download/${name}.tar.gz";
sha256 = "1fnhrrwww90746an2nz2kn9qdf9pklmaf5lm22gssl6648f2rp2m";
};
buildInputs = [ pkgconfig 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.linux;
};
}