Files
read_aconity_layers/devenv.nix
T
Cian-H ada32e43a9 Update Toolchains (uv, ty, python, maturin, rust 2024) (#69)
* 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
2026-06-19 14:33:18 +01:00

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;
}