ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / azure-multiapi-storage / default.nix
blob442315d0566bf42e89101b96efde1060fc6b9ca7
1 { lib, buildPythonPackage, fetchPypi, isPy27
2 , azure-common
3 , azure-core
4 , msrest
5 , msrestazure
6 , requests
7 }:
9 buildPythonPackage rec {
10   version = "0.10.0";
11   pname = "azure-multiapi-storage";
12   disabled = isPy27;
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-QhC2s/onnlbFVxMmK6SJg2hatxp4WTrYWtMV0pXtAZ8=";
17   };
19   propagatedBuildInputs = [
20     azure-common
21     azure-core
22     msrest
23     msrestazure
24     requests
25   ];
27   # fix namespace
28   pythonNamespaces = [ "azure.multiapi" ];
30   # no tests included
31   doCheck = false;
33   pythonImportsCheck = [ "azure.common" "azure.multiapi.storage" ];
35   meta = with lib; {
36     description = "Microsoft Azure Storage Client Library for Python with multi API version support.";
37     homepage = "https://github.com/Azure/azure-sdk-for-python";
38     license = licenses.mit;
39     maintainers = with maintainers; [ jonringer ];
40   };