mirror of
https://github.com/Cian-H/read_aconity_layers.git
synced 2026-07-02 05:14:49 +01:00
ada32e43a9
* WIP: Fixed non-deterministic test error * Updated tooling to use uv/ty instead of poetry/mypy * Updated python/rust/maturin versions * Added mac os to testing pipelines * Properly enforced fixed with csv reading * Minor tweaks for maintainability * Minor version bump * track npz files with git-lfs * fix: add macos dynamic lookup linker flags for pyo3
39 lines
563 B
Nix
39 lines
563 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
packages = with pkgs; [
|
|
act
|
|
cargo-bump
|
|
git
|
|
git-lfs
|
|
pre-commit
|
|
ruff
|
|
];
|
|
|
|
env.NIX_LD_LIBRARY_PATH = lib.makeLibraryPath (with pkgs; [
|
|
stdenv.cc.cc
|
|
zlib
|
|
]);
|
|
env.NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
|
|
|
|
enterShell = ''
|
|
unset PYTHONPATH
|
|
'';
|
|
|
|
languages = {
|
|
python = {
|
|
version = "3.14";
|
|
enable = true;
|
|
uv = {
|
|
enable = true;
|
|
sync.enable = true;
|
|
};
|
|
};
|
|
};
|
|
languages.rust.enable = true;
|
|
}
|