python312Packages.azure-multiapi-storage: refactor

This commit is contained in:
Fabian Affolter 2024-04-10 10:03:59 +02:00
parent 0a0a7a12b9
commit 94c80c749a

View File

@ -1,25 +1,36 @@
{ lib, buildPythonPackage, fetchPypi, isPy27 { lib
, azure-common , azure-common
, azure-core , azure-core
, buildPythonPackage
, cryptography
, fetchPypi
, msrest , msrest
, msrestazure , msrestazure
, pythonOlder
, requests , requests
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "1.2.0";
format = "setuptools";
pname = "azure-multiapi-storage"; pname = "azure-multiapi-storage";
disabled = isPy27; version = "1.2.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-CQuoWHeh0EMitTRsvifotrTwpWd/Q9LWWD7jZ2w9r8I="; hash = "sha256-CQuoWHeh0EMitTRsvifotrTwpWd/Q9LWWD7jZ2w9r8I=";
}; };
propagatedBuildInputs = [ build-system = [
setuptools
];
dependencies = [
azure-common azure-common
azure-core azure-core
cryptography
msrest msrest
msrestazure msrestazure
requests requests