From 9d5f23a2d4dab09c8e89c88d6c9ff73411a28cf4 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 28 Nov 2022 21:08:57 +0100 Subject: [PATCH] python310Packages.proxmoxer: 1.3.1 -> 2.0.0 Changelog: https://github.com/proxmoxer/proxmoxer/releases/tag/2.0.0 --- .../python-modules/proxmoxer/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/proxmoxer/default.nix b/pkgs/development/python-modules/proxmoxer/default.nix index 2dc78a464b2c..c2c47964a00e 100644 --- a/pkgs/development/python-modules/proxmoxer/default.nix +++ b/pkgs/development/python-modules/proxmoxer/default.nix @@ -1,17 +1,17 @@ { lib , buildPythonPackage , fetchFromGitHub -, mock -, nose , paramiko , pytestCheckHook , pythonOlder , requests +, requests-toolbelt +, responses }: buildPythonPackage rec { pname = "proxmoxer"; - version = "1.3.1"; + version = "2.0.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = pname; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-FY0JLDBoKmh85VoKh3UuPPRbMAIjs3l/fZM4owniH1c="; + hash = "sha256-phCeJkiY8XxaD4VQCxOzoInkwWQzHU7ZGdHvxNVgifU="; }; propagatedBuildInputs = [ @@ -29,14 +29,14 @@ buildPythonPackage rec { ]; checkInputs = [ - mock - nose pytestCheckHook + requests-toolbelt + responses ]; - pytestFlagsArray = [ + disabledTestPaths = [ # Tests require openssh_wrapper which is outdated and not available - "tests/paramiko_tests.py" + "tests/test_openssh.py" ]; pythonImportsCheck = [