Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, unittest2 5, robotframework 6, lxml 7, requests 8}: 9 10buildPythonPackage rec { 11 version = "0.7.1"; 12 pname = "robotframework-requests"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "501a1c7415f839d6837eedd57f2b6ed20576aab318bf14e3878a77c9b106aa45"; 17 }; 18 19 buildInputs = [ unittest2 ]; 20 propagatedBuildInputs = [ robotframework lxml requests ]; 21 22 meta = with stdenv.lib; { 23 description = "Robot Framework keyword library wrapper around the HTTP client library requests"; 24 homepage = "https://github.com/bulkan/robotframework-requests"; 25 license = licenses.mit; 26 }; 27 28}