Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
704 B
Nix
38 lines
704 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
coq,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonPackage rec {
|
|
pname = "coq-jupyter";
|
|
version = "1.6.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "EugeneLoy";
|
|
repo = "coq_jupyter";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-+Pp51cxeqjg5MW4CEccNWVjNcY9iyFNATIEage9RWJ0=";
|
|
};
|
|
|
|
propagatedBuildInputs =
|
|
(with python3.pkgs; [
|
|
ipykernel
|
|
future
|
|
])
|
|
++ [ coq ];
|
|
|
|
nativeBuildInputs = [ coq ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/EugeneLoy/coq_jupyter";
|
|
description = "Jupyter kernel for Coq";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ thomasjm ];
|
|
};
|
|
}
|