Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / azure-storage-file-share / default.nix
blobc6413f191fce811631fb4454ffd550abd9593ad0
1 { buildPythonPackage
2 , fetchPypi
3 , isPy3k
4 , lib
6 # pythonPackages
7 , azure-core
8 , cryptography
9 , msrest
10 , futures
13 buildPythonPackage rec {
14   pname = "azure-storage-file-share";
15   version = "12.4.1";
16   disabled = !isPy3k;
18   src = fetchPypi {
19     inherit pname version;
20     extension = "zip";
21     sha256 = "7503d05882970abc977529ff5a4b81e79f62fd51b238fe306f72e13f57a522ca";
22   };
24   propagatedBuildInputs = [
25     azure-core
26     cryptography
27     msrest
28   ];
30   # requires checkout from monorepo
31   doCheck = false;
32   pythonImportsCheck = [
33     "azure.core"
34     "azure.storage"
35   ];
37   meta = with lib; {
38     description = "Microsoft Azure File Share Storage Client Library for Python";
39     homepage = "https://github.com/Azure/azure-sdk-for-python";
40     license = licenses.mit;
41     maintainers = with maintainers; [
42       kamadorueda
43     ];
44   };