ttaenc: init at 3.4.1 (#238757)
[NixPkgs.git] / pkgs / development / python-modules / azure-storage-nspkg / default.nix
blob3807fa100e409f9520e6ccdd2f3e489fb4a84a51
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   azure-nspkg,
6 }:
8 buildPythonPackage rec {
9   pname = "azure-storage-nspkg";
10   version = "3.1.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "6f3bbe8652d5f542767d8433e7f96b8df7f518774055ac7c92ed7ca85f653811";
16   };
18   propagatedBuildInputs = [ azure-nspkg ];
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   };