eeb71630af
GitOrigin-RevId: 636051e353461f073ac55d5d42c1ed062a345046
49 lines
917 B
Nix
49 lines
917 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, lxml
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, requests
|
|
, robotframework
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "robotframework-requests";
|
|
version = "0.9.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MarketSquare";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-XjcR29dH9K9XEnJZlQ4UUDI1MG92dRO1puiB6fcN58k=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
lxml
|
|
requests
|
|
robotframework
|
|
];
|
|
|
|
buildInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"RequestsLibrary"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"utests"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Robot Framework keyword library wrapper around the HTTP client library requests";
|
|
homepage = "https://github.com/bulkan/robotframework-requests";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|