about summary refs log tree commit diff
path: root/pkgs/tools/package-management/pacup/default.nix
blob: 992615982ea73ee4e68c801600e0dec196159343 (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
35
36
37
38
39
40
41
42
43
44
45
46
{ lib
, fetchFromGitHub
, python3
}:

python3.pkgs.buildPythonApplication rec {
  pname = "pacup";
  version = "2.0.0";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "pacstall";
    repo = "pacup";
    rev = "refs/tags/${version}";
    hash = "sha256-ItO38QyxNHftKPQZAPO7596ddBfX0a1nfVVqgx7BfwI=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace 'httpx = ">=0.24,<0.25"' 'httpx = "*"'
  '';

  nativeBuildInputs = with python3.pkgs; [
    poetry-core
  ];

  propagatedBuildInputs = with python3.pkgs; [
    httpx
    rich
    typer
    packaging
  ];

  meta = with lib; {
    description = "Help maintainers update pacscripts";
    longDescription = ''
      Pacup (Pacscript Updater) is a maintainer helper tool to help maintainers update their pacscripts.
      It semi-automates the tedious task of updating pacscripts, and aims to make it a fun process for the maintainer!
    '';
    homepage = "https://github.com/pacstall/pacup";
    changelog = "https://github.com/pacstall/pacup/releases/tag/${version}";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ zahrun ];
    mainProgram = "pacup";
  };
}