pythonPackages.robotframework: move to python-modules/

This commit is contained in:
Bjørn Forsman 2017-10-29 15:40:13 +01:00
parent 3ab65ef6bf
commit b6d345c4b0
2 changed files with 21 additions and 19 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl, buildPythonPackage, isPy3k }:
buildPythonPackage rec {
version = "3.0.2";
name = "robotframework-${version}";
disabled = isPy3k;
src = fetchurl {
url = "mirror://pypi/r/robotframework/${name}.tar.gz";
sha256 = "1xqzxv00lxf9xi4vdxdsyd1bfmx18gi96vrnijpzj9w2aqrz4610";
};
meta = with stdenv.lib; {
description = "Generic test automation framework";
homepage = http://robotframework.org/;
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ bjornfor ];
};
}

View File

@ -18248,25 +18248,7 @@ in {
robomachine = callPackage ../development/python-modules/robomachine { };
robotframework = buildPythonPackage rec {
version = "3.0.2";
name = "robotframework-${version}";
disabled = isPy3k;
src = pkgs.fetchurl {
url = "mirror://pypi/r/robotframework/${name}.tar.gz";
sha256 = "1xqzxv00lxf9xi4vdxdsyd1bfmx18gi96vrnijpzj9w2aqrz4610";
};
meta = {
description = "Generic test automation framework";
homepage = http://robotframework.org/;
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ bjornfor ];
};
};
robotframework = callPackage ../development/python-modules/robotframework { };
robotframework-selenium2library = buildPythonPackage rec {
version = "1.6.0";