mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, pytestCheckHook
|
|
, setuptools
|
|
, packaging
|
|
, toml
|
|
, structlog
|
|
, appdirs
|
|
, pytest-asyncio
|
|
, flaky
|
|
, tornado
|
|
, pycurl
|
|
, aiohttp
|
|
, pytest-httpbin
|
|
, docutils
|
|
, installShellFiles
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nvchecker";
|
|
version = "2.4";
|
|
|
|
# Tests not included in PyPI tarball
|
|
src = fetchFromGitHub {
|
|
owner = "lilydjwg";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0ys4shp7gz6aaxrbflwcz7yjbvdv2v8pgj047p4rnp8ascpxg044";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles docutils ];
|
|
propagatedBuildInputs = [ setuptools packaging toml structlog appdirs tornado pycurl aiohttp ];
|
|
checkInputs = [ pytestCheckHook pytest-asyncio flaky pytest-httpbin ];
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
postBuild = ''
|
|
patchShebangs docs/myrst2man.py
|
|
make -C docs man
|
|
'';
|
|
|
|
postInstall = ''
|
|
installManPage docs/_build/man/nvchecker.1
|
|
'';
|
|
|
|
pytestFlagsArray = [ "-m 'not needs_net'" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/lilydjwg/nvchecker";
|
|
description = "New version checker for software";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ marsam ];
|
|
};
|
|
}
|