pythonPackages.azure-nspkg: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-10 12:27:54 -04:00
committed by Frederik Rietdijk
parent 3b49976b8a
commit 1675213fac
3 changed files with 51 additions and 32 deletions

View File

@@ -0,0 +1,22 @@
{ pkgs
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
version = "1.0.0";
pname = "azure-nspkg";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "293f286c15ea123761f30f5b1cb5adebe5f1e5009efade923c6dd1e017621bf7";
};
meta = with pkgs.lib; {
description = "Microsoft Azure SDK for Python";
homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.asl20;
maintainers = with maintainers; [ olcai ];
};
}