nixpkgs/pkgs/development/tools/build-managers/alibuild/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
578 B
Nix
Raw Normal View History

2022-04-26 21:05:28 +00:00
{ lib, python }:
2018-08-22 15:06:29 +00:00
python.pkgs.buildPythonApplication rec {
pname = "alibuild";
2022-04-26 21:05:28 +00:00
version = "1.11.2";
2018-08-22 15:06:29 +00:00
src = python.pkgs.fetchPypi {
inherit pname version;
2022-04-26 21:05:28 +00:00
hash = "sha256-wq2H2inUf2CjPD45krCNdjw2s4FXsEDlfOHqW8VaVKg=";
2018-08-22 15:06:29 +00:00
};
doCheck = false;
2022-04-26 21:05:28 +00:00
propagatedBuildInputs = with python.pkgs; [
requests
pyyaml
boto3
jinja2
distro
2018-08-22 15:06:29 +00:00
];
meta = with lib; {
homepage = "https://alisw.github.io/alibuild/";
description = "Build tool for ALICE experiment software";
license = licenses.gpl3;
maintainers = with maintainers; [ ktf ];
};
}