2020-10-01 04:20:00 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder, pytestCheckHook, setuptools, toml, structlog, appdirs, pytest-asyncio, flaky, tornado, pycurl, aiohttp, pytest-httpbin }:
|
2018-10-14 12:47:14 -05:00
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "nvchecker";
|
2020-10-01 04:20:00 +00:00
|
|
|
version = "2.0";
|
2018-10-14 12:47:14 -05:00
|
|
|
|
2020-10-01 04:20:00 +00:00
|
|
|
# Tests not included in PyPI tarball
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "lilydjwg";
|
|
|
|
|
repo = pname;
|
|
|
|
|
rev = "v${version}";
|
|
|
|
|
sha256 = "13wa95pvivbyshq3ys12iyvn8wlyzxfia8l6xh3fd46a2cs9x9g7";
|
2018-10-14 12:47:14 -05:00
|
|
|
};
|
|
|
|
|
|
2020-10-01 04:20:00 +00:00
|
|
|
propagatedBuildInputs = [ setuptools toml structlog appdirs tornado pycurl aiohttp ];
|
2020-07-27 04:20:00 -05:00
|
|
|
checkInputs = [ pytestCheckHook pytest-asyncio flaky pytest-httpbin ];
|
2018-10-14 12:47:14 -05:00
|
|
|
|
2020-10-01 04:20:00 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
2018-10-14 12:47:14 -05:00
|
|
|
|
2020-07-27 04:20:00 -05:00
|
|
|
pytestFlagsArray = [ "-m 'not needs_net'" ];
|
|
|
|
|
|
2018-10-14 12:47:14 -05:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/lilydjwg/nvchecker";
|
2018-10-14 12:47:14 -05:00
|
|
|
description = "New version checker for software";
|
|
|
|
|
license = licenses.mit;
|
|
|
|
|
maintainers = with maintainers; [ marsam ];
|
|
|
|
|
};
|
|
|
|
|
}
|