nixpkgs/pkgs/development/python-modules/msrestazure/default.nix

27 lines
579 B
Nix
Raw Normal View History

2018-12-19 23:07:28 +00:00
{ 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 ];
};
}