depot/third_party/nixpkgs/pkgs/tools/package-management/pacup/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

46 lines
1.2 KiB
Nix

{ 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";
};
}