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
44 lines
767 B
Nix
44 lines
767 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
metakernel,
|
|
svgwrite,
|
|
ipywidgets,
|
|
cairosvg,
|
|
numpy,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "calysto";
|
|
version = "1.0.6";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Calysto";
|
|
repo = "calysto";
|
|
rev = "v${version}";
|
|
hash = "sha256-lr/cHFshpFs/PGMCsa3FKMRPTP+eE9ziH5XCpV+KzO8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
metakernel
|
|
svgwrite
|
|
ipywidgets
|
|
cairosvg
|
|
numpy
|
|
];
|
|
|
|
# there are no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "calysto" ];
|
|
|
|
meta = with lib; {
|
|
description = "Tools for Jupyter and Python";
|
|
homepage = "https://github.com/Calysto/calysto";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ kranzes ];
|
|
};
|
|
}
|