File: shell.nix

package info (click to toggle)
haskell-math-functions 0.3.4.4-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,132 kB
  • sloc: haskell: 2,675; python: 121; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 163 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
let
  pkgs = import <nixpkgs> {};
  pyp  = pkgs.python3.withPackages (py: with py;
    [ ipython
      mpmath
    ]);
in
pkgs.mkShell {
  buildInputs = [ pyp ];
}