biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / package-management / apkg / default.nix
blobaaf4d47f4c62d9705ae42d098ce71624f3e07219
1 { lib, fetchFromGitLab, python3Packages
2 , gitMinimal, rpm, dpkg, fakeroot
3 }:
5 python3Packages.buildPythonApplication rec {
6   pname = "apkg";
7   version = "0.5.0";
8   format = "pyproject";
10   src = fetchFromGitLab {
11     domain = "gitlab.nic.cz";
12     owner = "packaging";
13     repo = pname;
14     rev = "v${version}";
15     hash = "sha256-VQNUzbWIDo/cbCdtx8JxN5UUMBW3mQ2B42In4b3AA+A=";
16   };
18   propagatedBuildInputs = with python3Packages; [
19     # copy&pasted requirements.txt (almost exactly)
20     beautifulsoup4   # upstream version detection
21     blessed          # terminal colors
22     build            # apkg distribution
23     cached-property  # for python <= 3.7; but pip complains even with 3.8
24     click            # nice CLI framework
25     distro           # current distro detection
26     jinja2           # templating
27     packaging        # version parsing
28     requests         # HTTP for humans™
29     toml             # config files
30   ];
32   nativeBuildInputs = with python3Packages; [ hatchling ];
34   makeWrapperArgs = [ # deps for `srcpkg` operation for other distros; could be optional
35     "--prefix" "PATH" ":" (lib.makeBinPath [ gitMinimal rpm dpkg fakeroot ])
36   ];
38   nativeCheckInputs = with python3Packages; [ pytest dunamai ];
39   checkPhase = ''
40     runHook preCheck
41     py.test # inspiration: .gitlab-ci.yml
42     runHook postCheck
43   '';
45   meta = with lib; {
46     description = "Upstream packaging automation tool";
47     homepage = "https://pkg.labs.nic.cz/pages/apkg";
48     license = licenses.gpl3Plus;
49     maintainers = [ maintainers.vcunat /* close to upstream */ ];
50     mainProgram = "apkg";
51   };