nix-eval-jobs/shell.nix
adisbladis 9030f0f8c5
Move devShell from flake.nix to separate shell.nix
Again, to facilitate non-flake development.
2021-09-24 22:12:56 -05:00

18 lines
277 B
Nix

{ pkgs ? import <nixpkgs> { }
, srcDir ? null
}:
(pkgs.callPackage ./default.nix { inherit srcDir; }).overrideAttrs(old: {
nativeBuildInputs = old.nativeBuildInputs ++ [
pkgs.editorconfig-checker
(pkgs.python3.withPackages(ps: [
ps.pytest
]))
];
})