python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / package-management / apkg / default.nix
blob9f187724666dcb2b970ddc300b9b190833a237ac
1 { lib, fetchFromGitLab, python3Packages
2 , gitMinimal, rpm, dpkg, fakeroot
3 }:
5 python3Packages.buildPythonApplication rec {
6   pname = "apkg";
7   version = "0.4.0";
9   src = fetchFromGitLab {
10     domain = "gitlab.nic.cz";
11     owner = "packaging";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "duZz2Kwjgek5pMJTDH8gMZAZ13uFwaIYT5E1brW7I7U=";
15   };
17   propagatedBuildInputs = with python3Packages; [
18     # copy&pasted requirements.txt (almost exactly)
19     beautifulsoup4   # upstream version detection
20     blessings        # terminal colors
21     build            # apkg distribution
22     cached-property  # @cached_property for python <= 3.7
23     click            # nice CLI framework
24     distro           # current distro detection
25     jinja2           # templating
26     packaging        # version parsing
27     requests         # HTTP for humans™
28     setuptools       # required by minver
29     toml             # config files
30   ];
32   makeWrapperArgs = [ # deps for `srcpkg` operation for other distros; could be optional
33     "--prefix" "PATH" ":" (lib.makeBinPath [ gitMinimal rpm dpkg fakeroot ])
34   ];
36   checkInputs = with python3Packages; [ pytest ];
37   checkPhase = ''
38     runHook preCheck
39     py.test # inspiration: .gitlab-ci.yml
40     runHook postCheck
41   '';
43   meta = with lib; {
44     description = "Upstream packaging automation tool";
45     homepage = "https://pkg.labs.nic.cz/pages/apkg";
46     license = licenses.gpl3Plus;
47     maintainers = [ maintainers.vcunat /* close to upstream */ ];
48   };