pythonPackages.robotframework: move to python-modules/
This commit is contained in:
parent
3ab65ef6bf
commit
b6d345c4b0
20
pkgs/development/python-modules/robotframework/default.nix
Normal file
20
pkgs/development/python-modules/robotframework/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user