mirror of
https://github.com/vale981/nix-jupyter-env
synced 2025-03-04 09:21:41 -05:00
9 lines
338 B
Nix
9 lines
338 B
Nix
{ mkDerivation, base, stdenv, bin-package-db }:
|
|
mkDerivation {
|
|
pname = "jupyter-env";
|
|
version = "0.1.0.0";
|
|
src = ./.;
|
|
libraryHaskellDepends = [ base ];
|
|
description = "Example environment for running a Jupyter environment in Nix that includes ipython and ihaskell (contributions welcome)";
|
|
license = stdenv.lib.licenses.mit;
|
|
}
|