pythonPackages.subunit: revert "rewrite to use buildPythonPackage"
This reverts commit e42547d8e9
. The change
broke samba and dependent packages.
This commit is contained in:
parent
636b25af67
commit
230182f61b
@ -10866,17 +10866,21 @@ let
|
||||
});
|
||||
|
||||
|
||||
subunit = buildPythonPackage rec {
|
||||
subunit = stdenv.mkDerivation rec {
|
||||
name = "subunit-${version}";
|
||||
version = "1.1.0";
|
||||
version = "1.0.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/p/python-subunit/python-subunit-${version}.tar.gz";
|
||||
sha256 = "125zh5i1f21ficn8ix5q33jk87j2pfmzbw6jq5l8v0hhjrp619yr";
|
||||
url = "https://launchpad.net/subunit/trunk/${version}/+download/${name}.tar.gz";
|
||||
sha256 = "1fnhrrwww90746an2nz2kn9qdf9pklmaf5lm22gssl6648f2rp2m";
|
||||
};
|
||||
|
||||
buildInputs = (with pkgs; [ pkgconfig check cppunit perl ]) ++ [ self.wrapPython ];
|
||||
|
||||
propagatedBuildInputs = with self; [ testtools testscenarios ];
|
||||
|
||||
postFixup = "wrapPythonPrograms";
|
||||
|
||||
meta = {
|
||||
description = "A streaming protocol for test results";
|
||||
homepage = https://launchpad.net/subunit;
|
||||
|
Loading…
Reference in New Issue
Block a user