python3Packages.git-versioner: init at 7.1

This commit is contained in:
Tony Zorman 2024-04-06 07:25:41 +02:00
parent f3d864521b
commit 855607aa20
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, setuptools-scm
, fetchFromGitLab
}:
buildPythonPackage rec {
pname = "git-versioner";
version = "7.1";
pyproject = true;
src = fetchFromGitLab {
owner = "alelec";
repo = "__version__";
rev = "v${version}";
hash = "sha256-bnpuFJSd4nBXJA75V61kiB+nU5pUzdEAIScfKx7aaGU=";
};
nativeBuildInputs = [
setuptools-scm
];
pythonImportsCheck = [
"__version__"
];
meta = with lib; {
description = "Manage current / next version for project";
homepage = "https://gitlab.com/alelec/__version__";
license = licenses.mit;
maintainers = with maintainers; [ slotThe ];
};
}

View File

@ -4781,6 +4781,8 @@ self: super: with self; {
gitpython = callPackage ../development/python-modules/gitpython { };
git-versioner = callPackage ../development/python-modules/git-versioner { };
glad = callPackage ../development/python-modules/glad { };
glad2 = callPackage ../development/python-modules/glad2 { };