2018-12-19 23:07:28 +00:00
|
|
|
{ pkgs
|
2019-06-19 23:28:19 +01:00
|
|
|
, lib
|
2018-12-19 23:07:28 +00:00
|
|
|
, buildPythonPackage
|
2019-06-19 23:28:19 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, isPy3k
|
2018-12-19 23:07:28 +00:00
|
|
|
, adal
|
|
|
|
, msrest
|
2019-06-19 23:28:19 +01:00
|
|
|
, mock
|
|
|
|
, httpretty
|
|
|
|
, pytest
|
|
|
|
, pytest-asyncio
|
2018-12-19 23:07:28 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-04-22 23:51:43 +01:00
|
|
|
version = "0.6.3";
|
2018-12-19 23:07:28 +00:00
|
|
|
pname = "msrestazure";
|
|
|
|
|
2019-06-19 23:28:19 +01:00
|
|
|
# Pypi tarball doesnt include tests
|
|
|
|
# see https://github.com/Azure/msrestazure-for-python/pull/133
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Azure";
|
|
|
|
repo = "msrestazure-for-python";
|
|
|
|
rev = "v${version}";
|
2020-04-22 23:51:43 +01:00
|
|
|
sha256 = "0pd3qw96c9fz4qgimnc0qf0pz7m9rr1wzhxj8m792swaf3pb18z8";
|
2018-12-19 23:07:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ adal msrest ];
|
|
|
|
|
2019-06-19 23:28:19 +01:00
|
|
|
checkInputs = [ httpretty mock pytest ]
|
2019-11-10 00:12:23 +00:00
|
|
|
++ lib.optionals isPy3k [ pytest-asyncio ];
|
2019-06-19 23:28:19 +01:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pytest tests/
|
|
|
|
'';
|
|
|
|
|
2018-12-19 23:07:28 +00:00
|
|
|
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;
|
2019-06-19 23:28:19 +01:00
|
|
|
maintainers = with maintainers; [ bendlas jonringer ];
|
2018-12-19 23:07:28 +00:00
|
|
|
};
|
|
|
|
}
|