1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "gophernotes";
8 version = "0.7.3";
9
10 src = fetchFromGitHub {
11 owner = "gopherdata";
12 repo = "gophernotes";
13 rev = "v${version}";
14 sha256 = "sha256-LiYPos6Ic+se5bTTkvggmyxyS20uhgALkDU2LoXTci8=";
15 };
16
17 vendorSha256 = "sha256-wDMx3B47Vv87/3YEPX8/70Q5/REJ7IPvw8dA/viJiSY=";
18
19 meta = with lib; {
20 description = "Go kernel for Jupyter notebooks";
21 homepage = "https://github.com/gopherdata/gophernotes";
22 license = licenses.mit;
23 maintainers = [ maintainers.costrouc ];
24 };
25}