5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
86 lines
1.6 KiB
Nix
86 lines
1.6 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.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lilydjwg";
|
|
repo = "nvchecker";
|
|
rev = "v${version}";
|
|
hash = "sha256-V2lTGeaiwUsh8IONbZ5GQrqevJMhjeuFLTDF8UdWg8Q=";
|
|
};
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|