nixpkgs/pkgs/development/python-modules/msrestazure/default.nix
volth f3282c8d1e treewide: remove unused variables (#63177)
* treewide: remove unused variables

* making ofborg happy
2019-06-16 19:59:05 +00:00

25 lines
570 B
Nix

{ pkgs
, buildPythonPackage
, fetchPypi
, 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 ];
};
}