lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #94107 from marsam/update-nvchecker

python3Packages.nvchecker: 1.6.post1 -> 1.7

authored by

Mario Rodas and committed by
GitHub
56c86e7c 246abba9

+9 -10
+7 -10
pkgs/development/python-modules/nvchecker/default.nix
··· 1 - { stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytest, setuptools, structlog, pytest-asyncio, flaky, tornado, pycurl, pytest-httpbin }: 1 + { stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytestCheckHook, setuptools, structlog, pytest-asyncio, flaky, tornado, pycurl, aiohttp, pytest-httpbin }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "nvchecker"; 5 - version = "1.6.post1"; 5 + version = "1.7"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "7d2e889a4ba2eeb75dd6649ed5e99f8cbfed45b2194657e8f46c978ec58d4175"; 9 + sha256 = "01be0e5587d346ad783b4b2dc45bd8eefe477081b33fff18cc2fdea58c2a38ef"; 10 10 }; 11 11 12 - propagatedBuildInputs = [ setuptools structlog tornado pycurl ]; 13 - checkInputs = [ pytest pytest-asyncio flaky pytest-httpbin ]; 14 - 15 - # disable `test_ubuntupkg` because it requires network 16 - checkPhase = '' 17 - py.test -m "not needs_net" --ignore=tests/test_ubuntupkg.py 18 - ''; 12 + propagatedBuildInputs = [ setuptools structlog tornado pycurl aiohttp ]; 13 + checkInputs = [ pytestCheckHook pytest-asyncio flaky pytest-httpbin ]; 19 14 20 15 disabled = pythonOlder "3.5"; 16 + 17 + pytestFlagsArray = [ "-m 'not needs_net'" ]; 21 18 22 19 meta = with stdenv.lib; { 23 20 homepage = "https://github.com/lilydjwg/nvchecker";
+2
pkgs/top-level/all-packages.nix
··· 5551 5551 5552 5552 notable = callPackage ../applications/misc/notable { }; 5553 5553 5554 + nvchecker = with python3Packages; toPythonApplication nvchecker; 5555 + 5554 5556 miller = callPackage ../tools/text/miller { }; 5555 5557 5556 5558 milu = callPackage ../applications/misc/milu { };