python312Packages.nextdns: refactor

This commit is contained in:
Fabian Affolter 2024-04-21 11:36:26 +02:00
parent a8a8401b7b
commit e7354669da
1 changed files with 7 additions and 2 deletions

View File

@ -8,12 +8,13 @@
, pytest-error-for-skips
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "nextdns";
version = "2.1.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.10";
@ -24,7 +25,11 @@ buildPythonPackage rec {
hash = "sha256-haw6t7pepMN77LFVgDFBbV4StRqcRMvnCaup8K38kEg=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
aiohttp
orjson
];