1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "gophernotes";
8 version = "0.7.5";
9
10 src = fetchFromGitHub {
11 owner = "gopherdata";
12 repo = "gophernotes";
13 rev = "v${version}";
14 sha256 = "sha256-cGlYgay/t6XIl0U9XvrHkqNxZ6BXtXi0TIANY1WdZ3Y=";
15 };
16
17 vendorSha256 = "sha256-iIBqx52fD12R+7MSjQNihMYYtZ9vPAdJndOG4YJVhy4=";
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}