pythonPackages.msrestazure: init 0.6.0

This commit is contained in:
Herwig Hochleitner 2018-12-20 00:07:28 +01:00 committed by Herwig Hochleitner
parent 668d18c07a
commit 292a4520f9
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ pkgs
, buildPythonPackage
, fetchPypi
, python
, adal
, msrest
}:
buildPythonPackage rec {
version = "0.6.0";
pname = "msrestazure";
src = fetchPypi {
inherit pname version;
sha256 = "06s04f6nng4na2663kc12a3skiaqb631nscjfwpsrx4lzkf8bccr";
};
propagatedBuildInputs = [ adal msrest ];
meta = with pkgs.lib; {
description = "The runtime library 'msrestazure' for AutoRest generated Python clients.";
homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.mit;
maintainers = with maintainers; [ bendlas ];
};
}

View File

@ -498,6 +498,7 @@ in {
mpi = pkgs.openmpi;
};
msrestazure = callPackage ../development/python-modules/msrestazure { };
msrest = callPackage ../development/python-modules/msrest { };
multiset = callPackage ../development/python-modules/multiset { };