depot/third_party/nixpkgs/pkgs/development/python-modules/azure-storage-file-share/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

45 lines
847 B
Nix

{ buildPythonPackage
, fetchPypi
, isPy3k
, lib
# pythonPackages
, azure-core
, cryptography
, msrest
, futures
}:
buildPythonPackage rec {
pname = "azure-storage-file-share";
version = "12.4.1";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "7503d05882970abc977529ff5a4b81e79f62fd51b238fe306f72e13f57a522ca";
};
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
];
};
}