blob: 7c7b85951e230d1bd57deb209ee12cc8bae1349b (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
hatchling,
# dependencies
dunamai,
jinja2,
tomlkit,
# tests
gitpython,
pytestCheckHook,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "uv-dynamic-versioning";
version = "0.12.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ninoseki";
repo = "uv-dynamic-versioning";
tag = "v${version}";
# Tests perform mock operations on the local repo
leaveDotGit = true;
hash = "sha256-wa77MZnKa8Kvswli2cymUtpXRumnocaJ0xn4h3J/DAs=";
};
build-system = [
hatchling
];
dependencies = [
dunamai
hatchling
jinja2
tomlkit
];
pythonImportsCheck = [
"uv_dynamic_versioning"
];
preCheck = ''
git config --global user.email "nobody@example.com"
git config --global user.name "Nobody"
'';
nativeCheckInputs = [
gitpython
pytestCheckHook
writableTmpDirAsHomeHook
];
setupHook = ./setup-hook.sh;
meta = {
description = "Dynamic versioning based on VCS tags for uv/hatch project";
homepage = "https://github.com/ninoseki/uv-dynamic-versioning";
changelog = "https://github.com/ninoseki/uv-dynamic-versioning/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
|