Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
987 B
Nix
49 lines
987 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
linien-common,
|
|
setuptools,
|
|
fabric,
|
|
typing-extensions,
|
|
numpy,
|
|
scipy,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "linien-client";
|
|
pyproject = true;
|
|
|
|
inherit (linien-common) src version;
|
|
|
|
sourceRoot = "${src.name}/linien-client";
|
|
|
|
preBuild = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
fabric
|
|
typing-extensions
|
|
numpy
|
|
scipy
|
|
linien-common
|
|
];
|
|
|
|
pythonImportsCheck = [ "linien_client" ];
|
|
|
|
meta = {
|
|
description = "Client components of the Linien spectroscopy lock application";
|
|
homepage = "https://github.com/linien-org/linien/tree/develop/linien-client";
|
|
changelog = "https://github.com/linien-org/linien/blob/v${version}/CHANGELOG.md";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [
|
|
fsagbuya
|
|
doronbehar
|
|
];
|
|
# See comment near linien-common.meta.broken
|
|
broken = lib.versionAtLeast numpy.version "2";
|
|
};
|
|
}
|