depot/third_party/nixpkgs/pkgs/development/python-modules/asyncarve/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

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