2020-07-27 10:20:00 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytestCheckHook, setuptools, structlog, pytest-asyncio, flaky, tornado, pycurl, aiohttp, pytest-httpbin }:
|
2018-10-14 18:47:14 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "nvchecker";
|
2020-07-27 10:20:00 +01:00
|
|
|
version = "1.7";
|
2018-10-14 18:47:14 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-27 10:20:00 +01:00
|
|
|
sha256 = "01be0e5587d346ad783b4b2dc45bd8eefe477081b33fff18cc2fdea58c2a38ef";
|
2018-10-14 18:47:14 +01:00
|
|
|
};
|
|
|
|
|
2020-07-27 10:20:00 +01:00
|
|
|
propagatedBuildInputs = [ setuptools structlog tornado pycurl aiohttp ];
|
|
|
|
checkInputs = [ pytestCheckHook pytest-asyncio flaky pytest-httpbin ];
|
2018-10-14 18:47:14 +01:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
|
2020-07-27 10:20:00 +01:00
|
|
|
pytestFlagsArray = [ "-m 'not needs_net'" ];
|
|
|
|
|
2018-10-14 18:47:14 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/lilydjwg/nvchecker";
|
2018-10-14 18:47:14 +01:00
|
|
|
description = "New version checker for software";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ marsam ];
|
|
|
|
};
|
|
|
|
}
|