Skip to content

Commit

Permalink
python.pkgs.robotframework-tools: fix build, mark as broken on Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz committed Mar 15, 2019
1 parent b5ddc8f commit 790b927
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkgs/development/python-modules/robotframework-tools/default.nix
@@ -1,11 +1,12 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, robotframework
, moretools
, pathpy
, six
, setuptools
, zetup
}:

buildPythonPackage rec {
Expand All @@ -17,13 +18,14 @@ buildPythonPackage rec {
sha256 = "04gkn1zpf3rsvbqdxrrjqqi8sa0md9gqwh6n5w2m03fdwjg4lc7q";
};

propagatedBuildInputs = [ robotframework moretools pathpy six setuptools ];
nativeBuildInputs = [ zetup ];

propagatedBuildInputs = [ robotframework moretools pathpy six ];

meta = with stdenv.lib; {
description = "Python Tools for Robot Framework and Test Libraries";
homepage = https://bitbucket.org/userzimmermann/robotframework-tools;
license = licenses.gpl3;
platforms = platforms.linux;
broken = isPy3k; # 2019-03-15, missing dependency robotframework-python3
};

}

0 comments on commit 790b927

Please sign in to comment.