depot/third_party/nixpkgs/pkgs/development/python-modules/f5-sdk/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

35 lines
705 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
f5-icontrol-rest,
six,
}:
buildPythonPackage rec {
pname = "f5-sdk";
version = "3.0.21";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-IokMj9mCMsFMVFYO4CpZUB2i32cOamhS5u2mNkNjljo=";
};
propagatedBuildInputs = [
f5-icontrol-rest
six
];
# needs to be updated to newer pytest version and requires physical device
doCheck = false;
pythonImportsCheck = [ "f5" ];
meta = with lib; {
description = "F5 Networks Python SDK";
homepage = "https://github.com/F5Networks/f5-common-python";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}