Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 28 lines 626 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, unittest2 5, robotframework 6, lxml 7, requests 8}: 9 10buildPythonPackage rec { 11 version = "0.8.1"; 12 pname = "robotframework-requests"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "b26f4ae617ff8c4b522fba422b7c8f83545a98aec3e2deb7f1aa53dcd68defe2"; 17 }; 18 19 buildInputs = [ unittest2 ]; 20 propagatedBuildInputs = [ robotframework lxml requests ]; 21 22 meta = with 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}