biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / editors / jupyter-kernels / coq / kernel.nix
blob78bf84716fef5fd75811ff44d9b0aaa86480c41e
1 { lib
2 , fetchFromGitHub
3 , python3
4 , coq
5 }:
7 python3.pkgs.buildPythonPackage rec {
8   pname = "coq-jupyter";
9   version = "1.6.0";
11   src = fetchFromGitHub {
12     owner = "EugeneLoy";
13     repo = "coq_jupyter";
14     rev = "v${version}";
15     sha256 = "sha256-+Pp51cxeqjg5MW4CEccNWVjNcY9iyFNATIEage9RWJ0=";
16   };
18   propagatedBuildInputs = (with python3.pkgs; [ ipykernel future ]) ++ [ coq ];
20   nativeBuildInputs = [ coq ];
22   doCheck = false;
24   meta = with lib; {
25     homepage = "https://github.com/EugeneLoy/coq_jupyter";
26     description = "Jupyter kernel for Coq";
27     license = licenses.asl20;
28     maintainers = with maintainers; [ thomasjm ];
29   };