mirror of
https://github.com/vale981/nix-jupyter-env
synced 2025-03-04 17:31:41 -05:00
10 lines
338 B
Nix
10 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;
|
||
|
}
|