Nick Cao 2024-02-24 15:46:33 -05:00
parent 73de017ef2
commit d8e76e5d6b
No known key found for this signature in database

View File

@ -1,12 +1,10 @@
{ lib
, aiohttp
, platformdirs
, buildPythonPackage
, docutils
, fetchFromGitHub
, flaky
, installShellFiles
, packaging
, pycurl
, pytest-asyncio
, pytest-httpbin
@ -20,31 +18,29 @@
buildPythonPackage rec {
pname = "nvchecker";
version = "2.12";
format = "pyproject";
version = "2.13.1";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "lilydjwg";
repo = pname;
rev = "v${version}";
hash = "sha256-6mhVDC2jpIIOZeoKz4AxxU7jj8dqPVBKRWupbuY/T7E=";
hash = "sha256-q+az9oaxxIOv/vLFpkT3cF5GDJsa0Cid4oPWEKg5s7M=";
};
nativeBuildInputs = [
setuptools
docutils
installShellFiles
];
propagatedBuildInputs = [
aiohttp
platformdirs
packaging
pycurl
setuptools
structlog
platformdirs
tornado
pycurl
] ++ lib.optionals (pythonOlder "3.11") [
tomli
];