blob: 17b1544266353e7178a4e5119ec3cf2f3dbb915d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
lxml,
pytestCheckHook,
requests,
robotframework,
}:
buildPythonPackage rec {
pname = "robotframework-requests";
version = "0.9.7";
format = "setuptools";
src = fetchFromGitHub {
owner = "MarketSquare";
repo = "robotframework-requests";
tag = "v${version}";
hash = "sha256-NRhf3delcqUw9vWRPL6pJzpcmRMDou2pHmUHMstF8hw=";
};
propagatedBuildInputs = [
lxml
requests
robotframework
];
buildInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "RequestsLibrary" ];
enabledTestPaths = [ "utests" ];
meta = {
description = "Robot Framework keyword library wrapper around the HTTP client library requests";
homepage = "https://github.com/bulkan/robotframework-requests";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|