python312Packages.asyncarve: init at 0.1.1

This commit is contained in:
Pyrox
2024-07-29 16:14:16 -04:00
parent 3a2592ce1e
commit 95052df0be
2 changed files with 44 additions and 0 deletions
@@ -0,0 +1,42 @@
{
lib,
buildPythonPackage,
fetchPypi,
mashumaro,
orjson,
aiohttp,
yarl,
setuptools,
}:
buildPythonPackage rec {
pname = "asyncarve";
version = "0.1.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-5h56Sr0kPLrNPU70W90WsjmWax/N90dRMJ6lI5Mg86E=";
};
build-system = [ setuptools ];
dependencies = [
mashumaro
orjson
aiohttp
yarl
];
# No tests in repo
doCheck = false;
pythonImportsCheck = [ "asyncarve" ];
meta = with lib; {
description = "Simple Arve library";
homepage = "https://github.com/arvetech/asyncarve";
license = with licenses; [ mit ];
maintainers = with maintainers; [ pyrox0 ];
};
}
+2
View File
@@ -877,6 +877,8 @@ self: super: with self; {
asyauth = callPackage ../development/python-modules/asyauth { };
asyncarve = callPackage ../development/python-modules/asyncarve { };
async-dns = callPackage ../development/python-modules/async-dns { };
async-generator = callPackage ../development/python-modules/async-generator { };