Merge pull request #225934 from fabaff/ovh-bump

python310Packages.ovh: 1.0.1 -> 1.1.0
This commit is contained in:
Fabian Affolter
2023-04-13 07:40:52 +02:00
committed by GitHub
+23 -23
View File
@@ -1,49 +1,49 @@
{ lib
, buildPythonPackage
, fetchPypi
, mock
, nose
, pytestCheckHook
, pythonOlder
, requests
, yanc
}:
buildPythonPackage rec {
pname = "ovh";
version = "1.0.0";
version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-IQzwu0gwfPNPOLQLCO99KL5Hu2094Y+acQBFXVGzHhU=";
hash = "sha256-EI+bWjtHEZPOSkWJx3gvS8y//gugMWl3TrBHKsKO9nk=";
};
propagatedBuildInputs = [
requests
];
preCheck = ''
export HOME=$(mktemp -d)
'';
nativeCheckInputs = [
mock
nose
yanc
pytestCheckHook
];
# requires network
checkPhase = ''
nosetests . \
-e test_config_get_conf \
-e test_config_get_custom_conf \
-e test_endpoints \
-e test_init_from_custom_config
'';
pythonImportsCheck = [
"ovh"
];
meta = {
disabledTests = [
# Tests require network access
"test_config_from_files"
"test_config_from_given_config_file"
"test_config_from_invalid_ini_file"
"test_config_from_only_one_file"
"test_endpoints"
];
meta = with lib; {
description = "Thin wrapper around OVH's APIs";
homepage = "https://github.com/ovh/python-ovh";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.makefu ];
changelog = "https://github.com/ovh/python-ovh/blob/v${version}/CHANGELOG.md";
license = licenses.bsd2;
maintainers = with maintainers; [ makefu ];
};
}