nixpkgs/pkgs/development/python-modules/nvchecker/default.nix

56 lines
1.1 KiB
Nix
Raw Normal View History

2020-10-09 04:20:00 +00:00
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, setuptools
, toml
, structlog
, appdirs
, pytest-asyncio
, flaky
, tornado
, pycurl
, aiohttp
, pytest-httpbin
, docutils
, installShellFiles
}:
2018-10-14 17:47:14 +00:00
buildPythonPackage rec {
pname = "nvchecker";
2020-10-06 01:00:00 +00:00
version = "2.1";
2018-10-14 17:47:14 +00:00
2020-10-01 04:20:00 +00:00
# Tests not included in PyPI tarball
src = fetchFromGitHub {
owner = "lilydjwg";
repo = pname;
rev = "v${version}";
2020-10-06 01:00:00 +00:00
sha256 = "0zf9vhf8ka0v1mf1xhbvkc2nr54m0rkiw1i68ps4sgx2mdj6qrfk";
2018-10-14 17:47:14 +00:00
};
2020-10-09 04:20:00 +00:00
nativeBuildInputs = [ installShellFiles docutils ];
2020-10-01 04:20:00 +00:00
propagatedBuildInputs = [ setuptools toml structlog appdirs tornado pycurl aiohttp ];
checkInputs = [ pytestCheckHook pytest-asyncio flaky pytest-httpbin ];
2018-10-14 17:47:14 +00:00
2020-10-01 04:20:00 +00:00
disabled = pythonOlder "3.7";
2018-10-14 17:47:14 +00:00
2020-10-09 04:20:00 +00:00
postBuild = ''
patchShebangs docs/myrst2man.py
make -C docs man
'';
postInstall = ''
installManPage docs/_build/man/nvchecker.1
'';
pytestFlagsArray = [ "-m 'not needs_net'" ];
2018-10-14 17:47:14 +00:00
meta = with stdenv.lib; {
homepage = "https://github.com/lilydjwg/nvchecker";
2018-10-14 17:47:14 +00:00
description = "New version checker for software";
license = licenses.mit;
maintainers = with maintainers; [ marsam ];
};
}