Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / dunamai / default.nix
blobf4929849869ebf29f1bc76e3b08f07cf2d79e3a0
1 { lib
2 , poetry-core
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pythonOlder
6 , importlib-metadata
7 , packaging
8 , pytestCheckHook
9 , git
12 buildPythonPackage rec {
13   pname = "dunamai";
14   version = "1.19.2";
15   format = "pyproject";
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "mtkennerly";
21     repo = "dunamai";
22     rev = "refs/tags/v${version}";
23     hash = "sha256-oLJlBytdp9uVdKEdYDMz/IYnPP7XVnCUcThKO3IiW10=";
24   };
26   nativeBuildInputs = [
27     poetry-core
28   ];
30   propagatedBuildInputs = [
31     packaging
32   ] ++ lib.optionals (pythonOlder "3.8") [
33     importlib-metadata
34   ];
36   # needs to be able to run dunami from PATH
37   preCheck = ''
38     export PATH=$PATH:$out/bin
39     export HOME=$(mktemp -d)
41     git config --global user.email "nobody@example.com"
42     git config --global user.name "Nobody"
43   '';
45   nativeCheckInputs = [
46     git
47     pytestCheckHook
48   ];
50   disabledTests = [
51     # clones from github.com
52     "test__version__from_git__shallow"
53   ];
55   pythonImportsCheck = [
56     "dunamai"
57   ];
59   meta = with lib; {
60     description = "Dynamic version generation";
61     mainProgram = "dunamai";
62     homepage = "https://github.com/mtkennerly/dunamai";
63     changelog = "https://github.com/mtkennerly/dunamai/blob/v${version}/CHANGELOG.md";
64     license = licenses.mit;
65     maintainers = with maintainers; [ jmgilman ];
66   };