mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
96 lines
1.7 KiB
Nix
96 lines
1.7 KiB
Nix
{
|
|
buildPythonPackage,
|
|
lib,
|
|
rustPlatform,
|
|
stdenv,
|
|
attrs,
|
|
darwin,
|
|
numpy,
|
|
pillow,
|
|
pyarrow,
|
|
rerun,
|
|
torch,
|
|
typing-extensions,
|
|
pytestCheckHook,
|
|
python,
|
|
libiconv,
|
|
semver,
|
|
opencv4,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "rerun-sdk";
|
|
pyproject = true;
|
|
|
|
inherit (rerun)
|
|
src
|
|
version
|
|
cargoDeps
|
|
cargoPatches
|
|
patches
|
|
;
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.maturinBuildHook
|
|
rerun
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
libiconv # No-op on Linux, necessary on Darwin.
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.AppKit
|
|
darwin.apple_sdk.frameworks.CoreServices
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
attrs
|
|
numpy
|
|
pillow
|
|
pyarrow
|
|
typing-extensions
|
|
semver
|
|
opencv4
|
|
];
|
|
|
|
buildAndTestSubdir = "rerun_py";
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/289340
|
|
#
|
|
# Alternatively, one could
|
|
# dontUsePythonImportsCheck = true;
|
|
# dontUsePytestCheck = true;
|
|
postInstall = ''
|
|
rm $out/${python.sitePackages}/rerun_sdk.pth
|
|
ln -s rerun_sdk/rerun $out/${python.sitePackages}/rerun
|
|
'';
|
|
|
|
pythonImportsCheck = [ "rerun" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
torch
|
|
];
|
|
|
|
inherit (rerun) addDlopenRunpaths addDlopenRunpathsPhase;
|
|
postPhases = lib.optionals stdenv.hostPlatform.isLinux [ "addDlopenRunpathsPhase" ];
|
|
|
|
disabledTestPaths = [
|
|
# "fixture 'benchmark' not found"
|
|
"tests/python/log_benchmark/test_log_benchmark.py"
|
|
];
|
|
|
|
meta = {
|
|
description = "Python bindings for `rerun` (an interactive visualization tool for stream data)";
|
|
inherit (rerun.meta)
|
|
changelog
|
|
homepage
|
|
license
|
|
maintainers
|
|
;
|
|
mainProgram = "rerun";
|
|
};
|
|
}
|