1{ stdenv, fetchPypi, buildPythonPackage }:
2
3buildPythonPackage rec {
4 pname = "robotframework";
5 version = "3.0.4";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "ab94257cbd848dfca7148e092d233a12853cc7e840ce8231af9cbb5e7f51aa47";
10 };
11
12 meta = with stdenv.lib; {
13 description = "Generic test automation framework";
14 homepage = http://robotframework.org/;
15 license = licenses.asl20;
16 maintainers = with maintainers; [ bjornfor ];
17 };
18}