36 lines
740 B
Nix
36 lines
740 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
prompt-toolkit,
|
|
setuptools,
|
|
}:
|
|
buildPythonPackage rec {
|
|
name = "aiocmd";
|
|
version = "0.1.5";
|
|
src = fetchFromGitHub {
|
|
owner = "KimiNewt";
|
|
repo = "aiocmd";
|
|
tag = "v${version}";
|
|
hash = "sha256-C8dpeMTaoOMgfNP19JUYKUf+Vyw36Ry6dHkhaSm/QNk=";
|
|
};
|
|
|
|
pyproject = true;
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ prompt-toolkit ];
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "aiocmd" ];
|
|
|
|
meta = {
|
|
description = "Asyncio-based automatic CLI creation tool using prompt-toolkit";
|
|
homepage = "https://github.com/KimiNewt/aiocmd";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.znaniye ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|