Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 28 lines 634 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, unittest2 5, robotframework 6, lxml 7, requests 8}: 9 10buildPythonPackage rec { 11 version = "0.5.0"; 12 pname = "robotframework-requests"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "1c253b8061c8a91251abf3ebadc33152b8621671621405dd343efd17bdc9e620"; 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}