nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, buildPythonPackage
3, fetchPypi
4, python
5, isPy3k
6}:
7
8buildPythonPackage rec {
9 version = "3.0.2";
10 pname = "azure-nspkg";
11
12 src = fetchPypi {
13 inherit pname version;
14 extension = "zip";
15 sha256 = "e7d3cea6af63e667d87ba1ca4f8cd7cb4dfca678e4c55fc1cedb320760e39dd0";
16 };
17
18 doCheck = false;
19
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 mwilsoninsight ];
25 };
26}