linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / azure-nspkg / default.nix
blob25636053a6b3c745dd7647c2ffed9764f3356703
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , python
5 , isPy3k
6 }:
8 buildPythonPackage rec {
9   version = "3.0.2";
10   pname = "azure-nspkg";
12   src = fetchPypi {
13     inherit pname version;
14     extension = "zip";
15     sha256 = "e7d3cea6af63e667d87ba1ca4f8cd7cb4dfca678e4c55fc1cedb320760e39dd0";
16   };
18   doCheck = false;
20   meta = with lib; {
21     description = "Microsoft Azure SDK for Python";
22     homepage = "https://github.com/Azure/azure-sdk-for-python";
23     license = licenses.mit;
24     maintainers = with maintainers; [ olcai maxwilson ];
25   };