python38Packages.nvchecker: 1.6.post1 -> 1.7

This commit is contained in:
Mario Rodas 2020-07-27 04:20:00 -05:00
parent 32a144c554
commit 3bc6f9a413
No known key found for this signature in database
GPG key ID: 325649BCA6D53027

View file

@ -1,24 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytest, setuptools, structlog, pytest-asyncio, flaky, tornado, pycurl, pytest-httpbin }: { stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytestCheckHook, setuptools, structlog, pytest-asyncio, flaky, tornado, pycurl, aiohttp, pytest-httpbin }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "nvchecker"; pname = "nvchecker";
version = "1.6.post1"; version = "1.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "7d2e889a4ba2eeb75dd6649ed5e99f8cbfed45b2194657e8f46c978ec58d4175"; sha256 = "01be0e5587d346ad783b4b2dc45bd8eefe477081b33fff18cc2fdea58c2a38ef";
}; };
propagatedBuildInputs = [ setuptools structlog tornado pycurl ]; propagatedBuildInputs = [ setuptools structlog tornado pycurl aiohttp ];
checkInputs = [ pytest pytest-asyncio flaky pytest-httpbin ]; checkInputs = [ pytestCheckHook pytest-asyncio flaky pytest-httpbin ];
# disable `test_ubuntupkg` because it requires network
checkPhase = ''
py.test -m "not needs_net" --ignore=tests/test_ubuntupkg.py
'';
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
pytestFlagsArray = [ "-m 'not needs_net'" ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "https://github.com/lilydjwg/nvchecker"; homepage = "https://github.com/lilydjwg/nvchecker";
description = "New version checker for software"; description = "New version checker for software";