3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/build-managers/alibuild/default.nix

25 lines
553 B
Nix
Raw Normal View History

{ lib, python}:
2018-08-22 16:06:29 +01:00
python.pkgs.buildPythonApplication rec {
pname = "alibuild";
2020-03-31 08:04:15 +01:00
version = "1.5.5";
2018-08-22 16:06:29 +01:00
src = python.pkgs.fetchPypi {
inherit pname version;
2020-03-31 08:04:15 +01:00
sha256 = "1sh02avpab4qlyin3p928xw91l4fgs8x5x2rzl623ayqsnfjv19j";
2018-08-22 16:06:29 +01:00
};
doCheck = false;
propagatedBuildInputs = [
python.pkgs.requests
python.pkgs.pyyaml
];
meta = with lib; {
homepage = "https://alisw.github.io/alibuild/";
description = "Build tool for ALICE experiment software";
license = licenses.gpl3;
maintainers = with maintainers; [ ktf ];
};
}