mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 09:53:17 +00:00
21 lines
556 B
Nix
21 lines
556 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|