lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.azure-mgmt-recoveryservices: 3.0.0 -> 3.1.0 (#433326)

authored by

Fabian Affolter and committed by
GitHub
da478bf3 9ad88099

+11 -9
+11 -9
pkgs/development/python-modules/azure-mgmt-recoveryservices/default.nix
··· 6 6 fetchPypi, 7 7 isodate, 8 8 pythonOlder, 9 - typing-extensions, 9 + setuptools, 10 10 }: 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-mgmt-recoveryservices"; 14 - version = "3.0.0"; 15 - format = "setuptools"; 14 + version = "3.1.0"; 15 + pyproject = true; 16 16 17 - disabled = pythonOlder "3.7"; 17 + disabled = pythonOlder "3.11"; 18 18 19 19 src = fetchPypi { 20 - inherit pname version; 21 - hash = "sha256-3yEt+t+8xlnDEjHD4XCqt8IRRNFysPiCaKsPWtjpWII="; 20 + pname = "azure_mgmt_recoveryservices"; 21 + inherit version; 22 + hash = "sha256-fy25hAFwjPFFMi9QvEkcr3lnvsSvO/ewmEufB9MJJoc="; 22 23 }; 23 24 24 - propagatedBuildInputs = [ 25 + build-system = [ setuptools ]; 26 + 27 + dependencies = [ 25 28 azure-common 26 29 azure-mgmt-core 27 30 isodate 28 - ] 29 - ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ]; 31 + ]; 30 32 31 33 # Module has no tests 32 34 doCheck = false;