pythonPackages.azure-storage-file-share: init at 12.0.0

wip/yesman
Kevin Amado 4 years ago committed by Jon
parent d44322f1f3
commit 268180742c
  1. 45
      pkgs/development/python-modules/azure-storage-file-share/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,45 @@
{ buildPythonPackage
, fetchPypi
, isPy3k
, lib
# pythonPackages
, azure-core
, cryptography
, msrest
, futures
}:
buildPythonPackage rec {
pname = "azure-storage-file-share";
version = "12.0.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "15f5vk3vd2amggqqznx186raak9wgr57j0l1p9qa62kcl10bs9lg";
};
propagatedBuildInputs = [
azure-core
cryptography
msrest
];
# requires checkout from monorepo
doCheck = false;
pythonImportsCheck = [
"azure.core"
"azure.storage"
];
meta = with lib; {
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
];
};
}

@ -312,6 +312,8 @@ in {
azure-storage-file = callPackage ../development/python-modules/azure-storage-file { };
azure-storage-file-share = callPackage ../development/python-modules/azure-storage-file-share { };
azure-storage-queue = callPackage ../development/python-modules/azure-storage-queue { };
azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { };

Loading…
Cancel
Save