1{
2 lib,
3 buildGoModule,
4 fetchFromGitHub,
5}:
6
7buildGoModule rec {
8 pname = "gophernotes";
9 version = "0.7.5";
10
11 src = fetchFromGitHub {
12 owner = "gopherdata";
13 repo = "gophernotes";
14 rev = "v${version}";
15 sha256 = "sha256-cGlYgay/t6XIl0U9XvrHkqNxZ6BXtXi0TIANY1WdZ3Y=";
16 };
17
18 vendorHash = "sha256-iIBqx52fD12R+7MSjQNihMYYtZ9vPAdJndOG4YJVhy4=";
19
20 meta = with lib; {
21 description = "Go kernel for Jupyter notebooks";
22 homepage = "https://github.com/gopherdata/gophernotes";
23 license = licenses.mit;
24 maintainers = [ maintainers.costrouc ];
25 mainProgram = "gophernotes";
26 };
27}