blob: f31733bd045dc4c52b45d5652275778fe30c0d0e (
about) (
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
70
71
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
hatchling,
# dependencies
dunamai,
eval-type-backport,
pydantic,
returns,
tomlkit,
# tests
gitpython,
pytestCheckHook,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "uv-dynamic-versioning";
version = "0.6.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-rcvNQ6QrVu2pp1aWTalNK2R7CW/NfFGmu4Dea1EN2ZA=";
};
build-system = [
hatchling
];
dependencies = [
dunamai
eval-type-backport
hatchling
pydantic
returns
tomlkit
];
pythonImportsCheck = [
"uv_dynamic_versioning"
];
preCheck = ''
git config --global user.email "nobody@example.com"
git config --global user.name "Nobody"
'';
nativeCheckInputs = [
gitpython
pytestCheckHook
writableTmpDirAsHomeHook
];
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 ];
};
}
|