587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
97 lines
1.8 KiB
Nix
97 lines
1.8 KiB
Nix
{ lib
|
|
, platformdirs
|
|
, buildPythonPackage
|
|
, docutils
|
|
, fetchFromGitHub
|
|
, flaky
|
|
, installShellFiles
|
|
, pycurl
|
|
, pytest-asyncio
|
|
, pytest-httpbin
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools
|
|
, structlog
|
|
, tomli
|
|
, tornado
|
|
, awesomeversion
|
|
, packaging
|
|
, lxml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nvchecker";
|
|
version = "2.14";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lilydjwg";
|
|
repo = "nvchecker";
|
|
rev = "v${version}";
|
|
hash = "sha256-QqfF8PGY8sULv1x0blu21ucWxqhOpQ7jyLuRCzDIpco=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Fix try/except syntax. Remove with the next release
|
|
substituteInPlace tests/test_jq.py \
|
|
--replace-warn "except jq" "except ImportError"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
docutils
|
|
installShellFiles
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
structlog
|
|
platformdirs
|
|
tornado
|
|
pycurl
|
|
] ++ lib.optionals (pythonOlder "3.11") [
|
|
tomli
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
nativeCheckInputs = [
|
|
flaky
|
|
pytest-asyncio
|
|
pytest-httpbin
|
|
pytestCheckHook
|
|
];
|
|
|
|
postBuild = ''
|
|
patchShebangs docs/myrst2man.py
|
|
make -C docs man
|
|
'';
|
|
|
|
postInstall = ''
|
|
installManPage docs/_build/man/nvchecker.1
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"nvchecker"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"-m 'not needs_net'"
|
|
];
|
|
|
|
optional-dependencies = {
|
|
# vercmp = [ pyalpm ];
|
|
awesomeversion = [ awesomeversion ];
|
|
pypi = [ packaging ];
|
|
htmlparser = [ lxml ];
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "New version checker for software";
|
|
homepage = "https://github.com/lilydjwg/nvchecker";
|
|
changelog = "https://github.com/lilydjwg/nvchecker/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ marsam ];
|
|
};
|
|
}
|