91b3db1309
According to Nixpkgs manual[1] and NixOS 23.11 Release Note[2], the
`sourceRoot` attribute passed to `stdenv.mkDerivation` should be
specified as `"${src.name}"` or `"${src.name}/subdir"` when `src` is
produced using `fetchgit`-based fetchers.
`sourceRoot = "source"` or `sourceRoot = "source/subdir"` is based on
the assumption that the `name` attribute of these pre-unpacked fetchers
are always `"source"`, which is not the case. Expecting constant `name`
also makes the source FODs prone to irrelevent hashes during version
bumps.
[1]: https://nixos.org/manual/nixpkgs/unstable/#var-stdenv-sourceRoot
[2]: https://nixos.org/manual/nixos/stable/release-notes#sec-release-23.11
42 lines
791 B
Nix
42 lines
791 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)
|
|
'';
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [
|
|
fabric
|
|
typing-extensions
|
|
numpy
|
|
scipy
|
|
linien-common
|
|
];
|
|
|
|
pythonImportsCheck = [ "linien_client" ];
|
|
|
|
meta = with lib; {
|
|
description = "Client components of the Linien spectroscopy lock application";
|
|
homepage = "https://github.com/linien-org/linien/tree/develop/linien-client";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ fsagbuya doronbehar ];
|
|
};
|
|
}
|