diff options
Diffstat (limited to 'pkgs/development/python-modules/caio/default.nix')
-rw-r--r-- | pkgs/development/python-modules/caio/default.nix | 35 |
1 files changed, 21 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/caio/default.nix b/pkgs/development/python-modules/caio/default.nix index ee1bdc8dc62f..936fcaf3e95e 100644 --- a/pkgs/development/python-modules/caio/default.nix +++ b/pkgs/development/python-modules/caio/default.nix @@ -1,35 +1,42 @@ -{ lib -, aiomisc -, buildPythonPackage -, fetchFromGitHub -, pytest-aiohttp -, pytestCheckHook -, pythonOlder +{ + lib, + stdenv, + aiomisc, + buildPythonPackage, + fetchFromGitHub, + pytest-aiohttp, + pytestCheckHook, + pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "caio"; - version = "0.9.13"; - format = "setuptools"; + version = "0.9.17"; + pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "mosquito"; - repo = pname; + repo = "caio"; rev = "refs/tags/${version}"; - hash = "sha256-Q87NuL6yZ5uKImQqqdKTMWNyfUOb4NaZDEvNdqZbHDk="; + hash = "sha256-aTJ02dCLb3CsT6KmJxkmOzwtg5nuXeBwz+mT7ZTTU9o="; }; + build-system = [ setuptools ]; + nativeCheckInputs = [ aiomisc pytest-aiohttp pytestCheckHook ]; - pythonImportsCheck = [ - "caio" - ]; + env.NIX_CFLAGS_COMPILE = toString ( + lib.optionals stdenv.cc.isClang [ "-Wno-error=implicit-function-declaration" ] + ); + + pythonImportsCheck = [ "caio" ]; meta = with lib; { description = "File operations with asyncio support"; |