linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / robotframework-requests / default.nix
blobf23979f21fd1004c2bb078e5d781e3ab91625370
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , unittest2
5 , robotframework
6 , lxml
7 , requests
8 }:
10 buildPythonPackage rec {
11   version = "0.7.2";
12   pname = "robotframework-requests";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "662e0ce5036a55bcb4cb46ff9741f40c78c670f4fb64cd37714cf83d5fd31774";
17   };
19   buildInputs = [ unittest2 ];
20   propagatedBuildInputs = [ robotframework lxml requests ];
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   };