blob: b2908f090e98f554f906c6ebad788b1aaccab9aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
lib,
python3,
fetchFromGitLab,
}:
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "vja";
version = "6.0.3";
pyproject = true;
src = fetchFromGitLab {
owner = "ce72";
repo = "vja";
tag = finalAttrs.version;
hash = "sha256-wyKhDwqQXDU+DaVJo0LCyK1KV1vkRPbrUDs46x7hBEI=";
};
build-system = [
python3.pkgs.setuptools
python3.pkgs.wheel
];
dependencies = with python3.pkgs; [
click
click-aliases
parsedatetime
pyjwt
python-dateutil
requests
];
pythonImportsCheck = [
"vja"
];
meta = {
description = "Command line interface for Vikunja";
homepage = "https://gitlab.com/ce72/vja";
changelog = "https://gitlab.com/ce72/vja/-/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.gpl3Only;
mainProgram = "vja";
maintainers = with lib.maintainers; [ iv-nn ];
};
})
|