about summary refs log tree commit diff
path: root/pkgs/development/python-modules/git-versioner/default.nix
blob: 564bf1af9f61068c837299f13979d0dcde6d850a (plain) (blame)
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
{ 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 ];
  };

}