pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / applications / editors / gophernotes / default.nix
blob9e6ebb47f96685170b9cc83c6ae4004b80e4f765
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "gophernotes";
8   version = "0.7.5";
10   src = fetchFromGitHub {
11     owner = "gopherdata";
12     repo = "gophernotes";
13     rev = "v${version}";
14     sha256 = "sha256-cGlYgay/t6XIl0U9XvrHkqNxZ6BXtXi0TIANY1WdZ3Y=";
15   };
17   vendorHash = "sha256-iIBqx52fD12R+7MSjQNihMYYtZ9vPAdJndOG4YJVhy4=";
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     mainProgram = "gophernotes";
25   };