depot/third_party/nixpkgs/pkgs/development/python-modules/nvchecker/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

25 lines
815 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytestCheckHook, setuptools, structlog, pytest-asyncio, flaky, tornado, pycurl, aiohttp, pytest-httpbin }:
buildPythonPackage rec {
pname = "nvchecker";
version = "1.7";
src = fetchPypi {
inherit pname version;
sha256 = "01be0e5587d346ad783b4b2dc45bd8eefe477081b33fff18cc2fdea58c2a38ef";
};
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";
license = licenses.mit;
maintainers = with maintainers; [ marsam ];
};
}