mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
qlever-control: init at 0.5.46
This commit is contained in:
parent
6558a92154
commit
6f5bd533e4
1 changed files with 51 additions and 0 deletions
51
pkgs/by-name/ql/qlever-control/package.nix
Normal file
51
pkgs/by-name/ql/qlever-control/package.nix
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
lib,
|
||||
python3Packages,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
python3Packages.buildPythonApplication (finalAttrs: {
|
||||
pname = "qlever-control";
|
||||
version = "0.5.46";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "qlever-dev";
|
||||
repo = "qlever-control";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-vXSVrNfz4gRBCrTi0D+sXtfsAZwv7HO67zs7wh98cOY=";
|
||||
};
|
||||
|
||||
build-system = with python3Packages; [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
dependencies = with python3Packages; [
|
||||
argcomplete
|
||||
psutil
|
||||
pyyaml
|
||||
rdflib
|
||||
requests-sse
|
||||
termcolor
|
||||
tqdm
|
||||
];
|
||||
|
||||
nativeCheckInputs = with python3Packages; [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"qlever"
|
||||
];
|
||||
|
||||
__structuredAttrs = true;
|
||||
|
||||
meta = {
|
||||
description = "Command-line tool for controlling the QLever graph database";
|
||||
homepage = "https://github.com/qlever-dev/qlever-control";
|
||||
mainProgram = "qlever";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ eljamm ];
|
||||
teams = with lib.teams; [ ngi ];
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue