mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
61 lines
1.0 KiB
Nix
61 lines
1.0 KiB
Nix
{
|
|
fetchPypi,
|
|
lib,
|
|
nb-cli,
|
|
python3,
|
|
testers,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "nb-cli";
|
|
version = "1.4.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "nb_cli";
|
|
inherit version;
|
|
hash = "sha256-kI3Uy79mv0b+h5wjrRN3My9jOFzryhkStieqaG0YFvM=";
|
|
};
|
|
|
|
build-system = [
|
|
python3.pkgs.babel
|
|
python3.pkgs.pdm-backend
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
anyio
|
|
cashews
|
|
click
|
|
cookiecutter
|
|
httpx
|
|
importlib-metadata
|
|
jinja2
|
|
noneprompt
|
|
pydantic
|
|
pyfiglet
|
|
tomlkit
|
|
typing-extensions
|
|
virtualenv
|
|
watchfiles
|
|
wcwidth
|
|
];
|
|
|
|
# no test
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "nb_cli" ];
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion { package = nb-cli; };
|
|
};
|
|
|
|
meta = {
|
|
description = "CLI for nonebot2";
|
|
homepage = "https://cli.nonebot.dev";
|
|
changelog = "https://github.com/nonebot/nb-cli/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ moraxyc ];
|
|
mainProgram = "nb";
|
|
};
|
|
}
|