Merge pull request #172440 from r-ryantm/auto-update/python3.10-azure-storage-file-share

python310Packages.azure-storage-file-share: 12.7.0 -> 12.8.0
main
Fabian Affolter 2 years ago committed by GitHub
commit ced66c7f95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      pkgs/development/python-modules/azure-storage-file-share/default.nix

@ -1,7 +1,7 @@
{ buildPythonPackage
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, lib
, pythonOlder
# pythonPackages
, azure-core
@ -11,13 +11,15 @@
buildPythonPackage rec {
pname = "azure-storage-file-share";
version = "12.7.0";
disabled = !isPy3k;
version = "12.8.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "sha256-kYNugiWNlXEgryKLwrzytca/W+2481RqqUCbdJWrqDI=";
hash = "sha256-46OEVjMYFUa8A6Qh+yicrqUuXmUaSzsWT4maBFG6Yqg=";
};
propagatedBuildInputs = [
@ -28,6 +30,7 @@ buildPythonPackage rec {
# requires checkout from monorepo
doCheck = false;
pythonImportsCheck = [
"azure.core"
"azure.storage"
@ -37,8 +40,6 @@ buildPythonPackage rec {
description = "Microsoft Azure File Share Storage Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [
kamadorueda
];
maintainers = with maintainers; [ kamadorueda ];
};
}

Loading…
Cancel
Save