python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / dose3 / default.nix
blobdaf5b3779d73585539300b96d06fd84787db5891
1 { lib, buildDunePackage, fetchFromGitLab
2 , camlzip, ocamlgraph, parmap, re, stdlib-shims
3 , base64, bz2, ocaml_extlib, cudf
4 , dpkg, git, ocaml, ounit, python39, python39Packages
5 }:
7 buildDunePackage rec {
8   pname = "dose3";
9   version = "7.0.0";
11   src = fetchFromGitLab {
12     owner = "irill";
13     repo = "dose3";
14     rev = version;
15     sha256 = "sha256-K0fYSAWV48Rers/foDrEIqieyJ0PvpXkuYrFrZGBkkE=";
16   };
18   minimalOCamlVersion = "4.03";
19   useDune2 = true;
21   buildInputs = [
22     parmap
23   ];
25   propagatedBuildInputs = [
26     base64
27     bz2
28     camlzip
29     cudf
30     ocaml_extlib
31     ocamlgraph
32     re
33     stdlib-shims
34   ];
36   checkInputs = [
37     dpkg                      # Replaces: conf-dpkg
38     git
39     ounit
40     python39                  # Replaces: conf-python-3
41     python39Packages.pyyaml   # Replaces: conf-python3-yaml
42   ];
43   doCheck = false; # Tests are failing.
44                    # To enable tests use: lib.versionAtLeast ocaml.version "4.04";
46   meta = with lib; {
47     description = "Dose library (part of Mancoosi tools)";
48     downloadPage = "https://gitlab.com/irill/dose3/";
49     homepage = "https://www.mancoosi.org/software/";
50     license = licenses.lgpl3Plus;
51     longDescription = ''
52       The dose suite provides libraries for handling package meta-data, and various tools for analyzing package relationships in a large package repository.
53       * dose-builddebcheck checks, given a collection of source package stanzas and a collection of binary package stanzas of Debian packages, whether the build-dependencies of each source package can be satisfied by the binary packages.
54       * dose-distcheck checks for every package of a distribution whether it is possible to satisfy its dependencies and conflicts within this distribution.
55       * ceve, a general metadata parser supporting different input formats (Debian, rpm, and others) and different output formats.
56       * dose-outdated, a Debian-specific tool for finding packages that are not installable with respect to a package repository, and that can only be made installable again by fixing the package itself.
57       * dose-challenged, a Debian-specific tool for checking which packages will certainly become uninstallable when some existing package is upgraded to a newer version.
58       * dose-deb-coinstall, a Debian-specific tool for checking whether a set of packages can be installed all together.
59     '';
60   };