fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
49 lines
1 KiB
Nix
49 lines
1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
requests,
|
|
ruamel-yaml,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "osc-sdk-python";
|
|
version = "0.29.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "outscale";
|
|
repo = "osc-sdk-python";
|
|
rev = "v${version}";
|
|
hash = "sha256-WtKG2ujEGUW0nhYWxfYDkxicN/uEqBxKCh9FcCfjmHM=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
ruamel-yaml
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "ruamel.yaml==0.17.32" "ruamel.yaml"
|
|
'';
|
|
|
|
# Only keep test not requiring access and secret keys
|
|
pytestFlagsArray = [ "tests/test_net.py" ];
|
|
|
|
pythonImportsCheck = [ "osc_sdk_python" ];
|
|
|
|
meta = with lib; {
|
|
description = "SDK to perform actions on Outscale API";
|
|
homepage = "http://github.com/outscale/osc-sdk-python";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ nicolas-goudry ];
|
|
};
|
|
}
|