python310Packages.azure-storage-file-share: adjust input

- update disabled
This commit is contained in:
Fabian Affolter 2022-10-19 18:56:56 +02:00 committed by GitHub
parent a9bb64088d
commit ec5d7e687a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,11 +2,11 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder , pythonOlder
# pythonPackages
, azure-core , azure-core
, cryptography , cryptography
, isodate
, msrest , msrest
, typing-extensions
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -14,7 +14,7 @@ buildPythonPackage rec {
version = "12.10.1"; version = "12.10.1";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
@ -25,7 +25,9 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
azure-core azure-core
cryptography cryptography
isodate
msrest msrest
typing-extensions
]; ];
# requires checkout from monorepo # requires checkout from monorepo