summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/alibuild/default.nix
blob: 93709454c7b58fd8c4a95c5833763f7bee5aa0f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, python, fetchPypi }:

python.pkgs.buildPythonApplication rec {
  pname = "alibuild";
  version = "1.11.2";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-wq2H2inUf2CjPD45krCNdjw2s4FXsEDlfOHqW8VaVKg=";
  };

  doCheck = false;
  propagatedBuildInputs = with python.pkgs; [
    requests
    pyyaml
    boto3
    jinja2
    distro
  ];

  meta = with lib; {
    homepage = "https://alisw.github.io/alibuild/";
    description = "Build tool for ALICE experiment software";
    license = licenses.gpl3;
    maintainers = with maintainers; [ ktf ];
  };
}