Commit 855607aa authored by Tony Zorman's avatar Tony Zorman
Browse files

python3Packages.git-versioner: init at 7.1

parent f3d86452
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{ 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 ];
  };

}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };