Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "robotframework"; 5 version = "3.2.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "d693e6d06b17f48669e2a8c4cb6c1f0d56e5f1a74835d18b8ea2118da7bf2d79"; 10 extension = "zip"; 11 }; 12 13 meta = with stdenv.lib; { 14 description = "Generic test automation framework"; 15 homepage = "https://robotframework.org/"; 16 license = licenses.asl20; 17 maintainers = with maintainers; [ bjornfor ]; 18 }; 19}