File: shell.nix

package info (click to toggle)
rss2email 1%3A3.14-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,260 kB
  • sloc: python: 2,565; xml: 156; sh: 6; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 230 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ nixpkgs ? import ./nix/nixpkgs.nix }:
let
  pkgs = import nixpkgs {};
  pythonEnv = pkgs.poetry2nix.mkPoetryEnv {
    projectDir = ./.;
  };
in pkgs.mkShell {
  buildInputs = with pkgs; [
    poetry
    pythonEnv
    git
  ];
}