0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python311Packages.azure-mgmt-storage: 21.1.0 -> 21.2.0

This commit is contained in:
R. Ryantm 2024-06-18 08:50:09 +00:00 committed by Jonathan Ringer
parent 37d855d335
commit 09e71673f1

View file

@ -4,24 +4,29 @@
fetchPypi, fetchPypi,
azure-mgmt-common, azure-mgmt-common,
azure-mgmt-core, azure-mgmt-core,
isodate,
pythonOlder, pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-storage"; pname = "azure-mgmt-storage";
version = "21.1.0"; version = "21.2.0";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-1tPA6RfJiLye0Eckd9PvP5CIYAnrHZenEZRPg3VjAWI="; hash = "sha256-KHyYQLAb6TGBnUA9p+1SvWL9B3sFKd1HDm28T+3ksg0=";
}; };
propagatedBuildInputs = [ build-system = [ setuptools ];
dependencies = [
azure-mgmt-common azure-mgmt-common
azure-mgmt-core azure-mgmt-core
isodate
]; ];
pythonNamespaces = [ "azure.mgmt" ]; pythonNamespaces = [ "azure.mgmt" ];