nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python.pkgs.robotframework-tools: fix build, mark as broken on Python 3

(cherry picked from commit 790b92739d3f5d0abc20c11063caf1520de77475)

+6 -4
+6 -4
pkgs/development/python-modules/robotframework-tools/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , isPy3k 4 5 , robotframework 5 6 , moretools 6 7 , pathpy 7 8 , six 8 - , setuptools 9 + , zetup 9 10 }: 10 11 11 12 buildPythonPackage rec { ··· 18 17 sha256 = "04gkn1zpf3rsvbqdxrrjqqi8sa0md9gqwh6n5w2m03fdwjg4lc7q"; 19 18 }; 20 19 21 - propagatedBuildInputs = [ robotframework moretools pathpy six setuptools ]; 20 + nativeBuildInputs = [ zetup ]; 21 + 22 + propagatedBuildInputs = [ robotframework moretools pathpy six ]; 22 23 23 24 meta = with stdenv.lib; { 24 25 description = "Python Tools for Robot Framework and Test Libraries"; 25 26 homepage = https://bitbucket.org/userzimmermann/robotframework-tools; 26 27 license = licenses.gpl3; 27 - platforms = platforms.linux; 28 + broken = isPy3k; # 2019-03-15, missing dependency robotframework-python3 28 29 }; 29 - 30 30 }