pythonPackages.robotframework-tools: 0.1a114 -> 0.1rc4

This commit is contained in:
Chris Ostrouchov 2019-07-16 07:59:05 -04:00 committed by Frederik Rietdijk
parent bdd84a0257
commit 2c08f7dadd

View File

@ -7,25 +7,44 @@
, pathpy
, six
, zetup
, modeled
, pytest
}:
buildPythonPackage rec {
version = "0.1a115";
version = "0.1rc4";
pname = "robotframework-tools";
src = fetchPypi {
inherit pname version;
sha256 = "04gkn1zpf3rsvbqdxrrjqqi8sa0md9gqwh6n5w2m03fdwjg4lc7q";
sha256 = "0377ikajf6c3zcy3lc0kh4w9zmlqyplk2c2hb0yyc7h3jnfnya96";
};
nativeBuildInputs = [ zetup ];
nativeBuildInputs = [
zetup
];
propagatedBuildInputs = [ robotframework moretools pathpy six ];
propagatedBuildInputs = [
robotframework
moretools
pathpy
six
modeled
];
checkInputs = [
pytest
];
checkPhase = ''
# tests require network
pytest test --ignore test/remote/test_remote.py
'';
meta = with stdenv.lib; {
description = "Python Tools for Robot Framework and Test Libraries";
homepage = https://bitbucket.org/userzimmermann/robotframework-tools;
license = licenses.gpl3;
broken = isPy3k; # 2019-03-15, missing dependency robotframework-python3
maintainers = [ maintainers.costrouc ];
};
}