Skip to content

Commit

Permalink
python38Packages.nvchecker: 1.6.post1 -> 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
marsam committed Jul 27, 2020
1 parent 32a144c commit 3bc6f9a
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions pkgs/development/python-modules/nvchecker/default.nix
Original file line number Diff line number Diff line change
@@ -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 {
pname = "nvchecker";
version = "1.6.post1";
version = "1.7";

src = fetchPypi {
inherit pname version;
sha256 = "7d2e889a4ba2eeb75dd6649ed5e99f8cbfed45b2194657e8f46c978ec58d4175";
sha256 = "01be0e5587d346ad783b4b2dc45bd8eefe477081b33fff18cc2fdea58c2a38ef";
};

propagatedBuildInputs = [ setuptools structlog tornado pycurl ];
checkInputs = [ pytest pytest-asyncio flaky pytest-httpbin ];

# disable `test_ubuntupkg` because it requires network
checkPhase = ''
py.test -m "not needs_net" --ignore=tests/test_ubuntupkg.py
'';
propagatedBuildInputs = [ setuptools structlog tornado pycurl aiohttp ];
checkInputs = [ pytestCheckHook pytest-asyncio flaky pytest-httpbin ];

disabled = pythonOlder "3.5";

pytestFlagsArray = [ "-m 'not needs_net'" ];

meta = with stdenv.lib; {
homepage = "https://github.com/lilydjwg/nvchecker";
description = "New version checker for software";
Expand Down

0 comments on commit 3bc6f9a

Please sign in to comment.