python310Packages.caio: init at 0.9.8

This commit is contained in:
Fabian Affolter
2022-09-23 01:16:08 +02:00
parent 4dae2933ba
commit 9cb10063fb
2 changed files with 40 additions and 0 deletions
@@ -0,0 +1,38 @@
{ lib
, aiomisc
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "caio";
version = "0.9.8";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mosquito";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-hUG5EaraoKj3D3K+Qm2Nm1AFe19qwRy/FnEb1SXWKDM=";
};
checkInputs = [
aiomisc
pytestCheckHook
];
pythonImportsCheck = [
"caio"
];
meta = with lib; {
description = "File operations with asyncio support";
homepage = "https://github.com/mosquito/caio";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -1601,6 +1601,8 @@ in {
inherit (self) python numpy boost;
});
caio = callPackage ../development/python-modules/caio { };
cairo-lang = callPackage ../development/python-modules/cairo-lang { };
cairocffi = callPackage ../development/python-modules/cairocffi { };