ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / azure-storage-nspkg / default.nix
blobb8e243c9b6aa22e1899a6c965b76b549927c2115
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , azure-nspkg
5 }:
7 buildPythonPackage rec {
8   pname = "azure-storage-nspkg";
9   version = "3.1.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "6f3bbe8652d5f542767d8433e7f96b8df7f518774055ac7c92ed7ca85f653811";
14   };
16   propagatedBuildInputs = [
17     azure-nspkg
18   ];
20   # has no tests
21   doCheck = false;
23   meta = with lib; {
24     description = "Client library for Microsoft Azure Storage services owning the azure.storage namespace, user should not use this directly";
25     homepage = "https://github.com/Azure/azure-sdk-for-python";
26     license = licenses.mit;
27     maintainers = with maintainers; [ cmcdragonkai ];
28   };