python.pkgs.robotframework-tools: fix build, mark as broken on Python 3
This commit is contained in:
parent
b5ddc8f377
commit
790b92739d
@ -1,11 +1,12 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
, robotframework
|
, robotframework
|
||||||
, moretools
|
, moretools
|
||||||
, pathpy
|
, pathpy
|
||||||
, six
|
, six
|
||||||
, setuptools
|
, zetup
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -17,13 +18,14 @@ buildPythonPackage rec {
|
|||||||
sha256 = "04gkn1zpf3rsvbqdxrrjqqi8sa0md9gqwh6n5w2m03fdwjg4lc7q";
|
sha256 = "04gkn1zpf3rsvbqdxrrjqqi8sa0md9gqwh6n5w2m03fdwjg4lc7q";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ robotframework moretools pathpy six setuptools ];
|
nativeBuildInputs = [ zetup ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ robotframework moretools pathpy six ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Python Tools for Robot Framework and Test Libraries";
|
description = "Python Tools for Robot Framework and Test Libraries";
|
||||||
homepage = https://bitbucket.org/userzimmermann/robotframework-tools;
|
homepage = https://bitbucket.org/userzimmermann/robotframework-tools;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
platforms = platforms.linux;
|
broken = isPy3k; # 2019-03-15, missing dependency robotframework-python3
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user