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;
};
}

View file

@ -1,6 +1,6 @@
{ stdenv, fetchurl, python, pkgconfig, perl, libxslt, docbook_xsl
, docbook_xml_dtd_42, docbook_xml_dtd_45, readline, talloc, ntdb, tdb, tevent
, ldb, popt, iniparser, pythonPackages, libbsd, nss_wrapper, socket_wrapper
, ldb, popt, iniparser, subunit, libbsd, nss_wrapper, socket_wrapper
, uid_wrapper, libarchive
# source3/wscript optionals
@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
buildInputs = [
python pkgconfig perl libxslt docbook_xsl docbook_xml_dtd_42
docbook_xml_dtd_45 readline talloc ntdb tdb tevent ldb popt iniparser
pythonPackages.subunit libbsd nss_wrapper socket_wrapper uid_wrapper
subunit libbsd nss_wrapper socket_wrapper uid_wrapper
libarchive
kerberos zlib openldap cups pam avahi acl libaio fam libceph glusterfs

View file

@ -8724,7 +8724,6 @@ let
samba4 = callPackage ../servers/samba/4.x.nix {
python = python2;
pythonPackages = python2Packages;
kerberos = heimdal;
libgcrypt = libgcrypt_1_6;
cups = if stdenv.isDarwin then null else cups;
@ -12147,6 +12146,8 @@ let
pythonBindings = true;
});
subunit = callPackage ../development/libraries/subunit { };
surf = callPackage ../applications/misc/surf {
webkit = webkitgtk2;
};

View file

@ -12084,26 +12084,13 @@ let
};
};
subunit = stdenv.mkDerivation rec {
name = "subunit-${version}";
version = "1.0.0";
src = pkgs.fetchurl {
url = "https://launchpad.net/subunit/trunk/${version}/+download/${name}.tar.gz";
sha256 = "1fnhrrwww90746an2nz2kn9qdf9pklmaf5lm22gssl6648f2rp2m";
};
buildInputs = (with pkgs; [ pkgconfig check cppunit perl ]) ++ [ self.wrapPython ];
subunit = buildPythonPackage rec {
name = pkgs.subunit.name;
src = pkgs.subunit.src;
propagatedBuildInputs = with self; [ testtools testscenarios ];
postFixup = "wrapPythonPrograms";
meta = {
description = "A streaming protocol for test results";
homepage = https://launchpad.net/subunit;
license = licenses.asl20;
};
meta = pkgs.subunit.meta;
};