mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 10:24:08 +01:00
This commit was automatically generated using update-python-libraries. Co-authored-by: Michael Daniels <mdaniels5757@gmail.com>
48 lines
950 B
Nix
48 lines
950 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
requests,
|
|
ruamel-yaml,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "osc-sdk-python";
|
|
version = "0.38.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "outscale";
|
|
repo = "osc-sdk-python";
|
|
tag = "v${version}";
|
|
hash = "sha256-dS4vwBSvsjPu8JToXPww2tfN+zzCK/qzbxyZwA/n6js=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
ruamel-yaml
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonRelaxDeps = [
|
|
"ruamel.yaml"
|
|
];
|
|
|
|
# Only keep test not requiring access and secret keys
|
|
enabledTestPaths = [ "tests/test_net.py" ];
|
|
|
|
pythonImportsCheck = [ "osc_sdk_python" ];
|
|
|
|
meta = {
|
|
description = "SDK to perform actions on Outscale API";
|
|
homepage = "https://github.com/outscale/osc-sdk-python";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|