1{ buildPythonPackage
2, fetchPypi
3, isPy3k
4, lib
5
6# pythonPackages
7, azure-core
8, cryptography
9, msrest
10}:
11
12buildPythonPackage rec {
13 pname = "azure-storage-file-share";
14 version = "12.6.0";
15 disabled = !isPy3k;
16
17 src = fetchPypi {
18 inherit pname version;
19 extension = "zip";
20 sha256 = "7eb0cde00fbbb6b780da8bdd81312ab79de706c4a2601e4eded1bc430da680a8";
21 };
22
23 propagatedBuildInputs = [
24 azure-core
25 cryptography
26 msrest
27 ];
28
29 # requires checkout from monorepo
30 doCheck = false;
31 pythonImportsCheck = [
32 "azure.core"
33 "azure.storage"
34 ];
35
36 meta = with lib; {
37 description = "Microsoft Azure File Share Storage Client Library for Python";
38 homepage = "https://github.com/Azure/azure-sdk-for-python";
39 license = licenses.mit;
40 maintainers = with maintainers; [
41 kamadorueda
42 ];
43 };
44}