1{ lib
2, buildPythonPackage
3, fetchPypi
4, f5-icontrol-rest
5, six
6}:
7
8buildPythonPackage rec {
9 pname = "f5-sdk";
10 version = "3.0.21";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "sha256-IokMj9mCMsFMVFYO4CpZUB2i32cOamhS5u2mNkNjljo=";
16 };
17
18 propagatedBuildInputs = [
19 f5-icontrol-rest
20 six
21 ];
22
23 # needs to be updated to newer pytest version and requires physical device
24 doCheck = false;
25
26 pythonImportsCheck = [ "f5" ];
27
28 meta = with lib; {
29 description = "F5 Networks Python SDK";
30 homepage = "https://github.com/F5Networks/f5-common-python";
31 license = licenses.asl20;
32 maintainers = with maintainers; [ SuperSandro2000 ];
33 };
34}