evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / pa / pacup / package.nix
blob992615982ea73ee4e68c801600e0dec196159343
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "pacup";
8   version = "2.0.0";
9   format = "pyproject";
11   src = fetchFromGitHub {
12     owner = "pacstall";
13     repo = "pacup";
14     rev = "refs/tags/${version}";
15     hash = "sha256-ItO38QyxNHftKPQZAPO7596ddBfX0a1nfVVqgx7BfwI=";
16   };
18   postPatch = ''
19     substituteInPlace pyproject.toml \
20       --replace 'httpx = ">=0.24,<0.25"' 'httpx = "*"'
21   '';
23   nativeBuildInputs = with python3.pkgs; [
24     poetry-core
25   ];
27   propagatedBuildInputs = with python3.pkgs; [
28     httpx
29     rich
30     typer
31     packaging
32   ];
34   meta = with lib; {
35     description = "Help maintainers update pacscripts";
36     longDescription = ''
37       Pacup (Pacscript Updater) is a maintainer helper tool to help maintainers update their pacscripts.
38       It semi-automates the tedious task of updating pacscripts, and aims to make it a fun process for the maintainer!
39     '';
40     homepage = "https://github.com/pacstall/pacup";
41     changelog = "https://github.com/pacstall/pacup/releases/tag/${version}";
42     license = licenses.gpl3Plus;
43     maintainers = with maintainers; [ zahrun ];
44     mainProgram = "pacup";
45   };