Files
nixpkgs/pkgs/development/python-modules/asyncarve/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

43 lines
709 B
Nix

{
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 = {
description = "Simple Arve library";
homepage = "https://github.com/arvetech/asyncarve";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ pyrox0 ];
};
}