python312Packages.azure-multiapi-storage: refactor

This commit is contained in:
Fabian Affolter 2024-04-10 10:03:59 +02:00
parent 0a0a7a12b9
commit 94c80c749a
1 changed files with 16 additions and 5 deletions

View File

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