2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2020-10-09 05:20:00 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pythonOlder
|
|
|
|
, pytestCheckHook
|
|
|
|
, setuptools
|
|
|
|
, toml
|
|
|
|
, structlog
|
|
|
|
, appdirs
|
|
|
|
, pytest-asyncio
|
|
|
|
, flaky
|
|
|
|
, tornado
|
|
|
|
, pycurl
|
|
|
|
, aiohttp
|
|
|
|
, pytest-httpbin
|
|
|
|
, docutils
|
|
|
|
, installShellFiles
|
|
|
|
}:
|
2018-10-14 18:47:14 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "nvchecker";
|
2020-11-03 04:20:00 +00:00
|
|
|
version = "2.2";
|
2018-10-14 18:47:14 +01:00
|
|
|
|
2020-10-01 05:20:00 +01:00
|
|
|
# Tests not included in PyPI tarball
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lilydjwg";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-11-03 04:20:00 +00:00
|
|
|
sha256 = "0b17pikqyxcsid69lwnjl44n8z46ydjmxxdnbzasfdl7r83l7ijr";
|
2018-10-14 18:47:14 +01:00
|
|
|
};
|
|
|
|
|
2020-10-09 05:20:00 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles docutils ];
|
2020-10-01 05:20:00 +01:00
|
|
|
propagatedBuildInputs = [ setuptools toml structlog appdirs tornado pycurl aiohttp ];
|
2020-07-27 10:20:00 +01:00
|
|
|
checkInputs = [ pytestCheckHook pytest-asyncio flaky pytest-httpbin ];
|
2018-10-14 18:47:14 +01:00
|
|
|
|
2020-10-01 05:20:00 +01:00
|
|
|
disabled = pythonOlder "3.7";
|
2018-10-14 18:47:14 +01:00
|
|
|
|
2020-10-09 05:20:00 +01:00
|
|
|
postBuild = ''
|
|
|
|
patchShebangs docs/myrst2man.py
|
|
|
|
make -C docs man
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installManPage docs/_build/man/nvchecker.1
|
|
|
|
'';
|
|
|
|
|
2020-07-27 10:20:00 +01:00
|
|
|
pytestFlagsArray = [ "-m 'not needs_net'" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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 ];
|
|
|
|
};
|
|
|
|
}
|