tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
upsies: 2025.04.21 -> 2025.09.20
Fabian Affolter
4 months ago
801c7d25
b48a0417
+6
-7
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
up
upsies
package.nix
+6
-7
pkgs/by-name/up/upsies/package.nix
···
17
in
18
python3Packages.buildPythonApplication rec {
19
pname = "upsies";
20
-
version = "2025.04.21";
21
pyproject = true;
22
23
src = fetchFromGitea {
···
25
owner = "plotski";
26
repo = "upsies";
27
tag = "v${version}";
28
-
hash = "sha256-gjv0HOFV1VdfhVejGbV2+bMxP9BPfB3/3p6nOAYMS34=";
29
};
30
31
patches = [
···
37
})
38
];
39
40
-
build-system = with python3Packages; [
41
-
setuptools
42
-
];
43
44
dependencies = with python3Packages; [
45
aiobtclientapi
···
65
with python3Packages;
66
[
67
pytest-asyncio
0
0
68
pytest-mock
69
pytest-timeout
70
-
pytest-httpserver
71
pytestCheckHook
72
trustme
73
]
···
94
meta = with lib; {
95
description = "Toolkit for collecting, generating, normalizing and sharing video metadata";
96
homepage = "https://upsies.readthedocs.io/";
97
-
license = with licenses; [ gpl3Plus ];
98
mainProgram = "upsies";
99
maintainers = with maintainers; [ ambroisie ];
100
};
···
17
in
18
python3Packages.buildPythonApplication rec {
19
pname = "upsies";
20
+
version = "2025.09.20";
21
pyproject = true;
22
23
src = fetchFromGitea {
···
25
owner = "plotski";
26
repo = "upsies";
27
tag = "v${version}";
28
+
hash = "sha256-g6LS/kJ13IfmDxPJ6hnX4rSxr6TroPM+sIwQeqdHNVs=";
29
};
30
31
patches = [
···
37
})
38
];
39
40
+
build-system = with python3Packages; [ setuptools ];
0
0
41
42
dependencies = with python3Packages; [
43
aiobtclientapi
···
63
with python3Packages;
64
[
65
pytest-asyncio
66
+
pytest-cov-stub
67
+
pytest-httpserver
68
pytest-mock
69
pytest-timeout
0
70
pytestCheckHook
71
trustme
72
]
···
93
meta = with lib; {
94
description = "Toolkit for collecting, generating, normalizing and sharing video metadata";
95
homepage = "https://upsies.readthedocs.io/";
96
+
license = licenses.gpl3Plus;
97
mainProgram = "upsies";
98
maintainers = with maintainers; [ ambroisie ];
99
};