poetry2nix/shell.nix
adisbladis 849e0e3ca4 overrides: Move build-systems to separate file which can be automatically generated
This change uses the new development tool to derive build-systems from
nixpkgs to the extent that it is possible.

This will reduce the maintenance burden on us a bit until the upstream Poetry issue around this is solved.
Additionally it will fix a lot of packages we didn't even know were broken to begin with.
2022-01-21 14:30:51 +12:00

27 lines
450 B
Nix

let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs {
overlays = [
(import ./overlay.nix)
];
};
tools = pkgs.callPackage ./tools { };
in
pkgs.mkShell {
NIX_PATH = "nixpkgs=${sources.nixpkgs}";
buildInputs = [
tools.env
tools.py2-astparse
tools.flamegraph
tools.release
pkgs.nixpkgs-fmt
pkgs.poetry
pkgs.niv
pkgs.jq
pkgs.nix-prefetch-git
pkgs.nix-eval-jobs
];
}