python3Packages.calysto: init at 1.0.6

This commit is contained in:
Ilan Joselevich
2023-04-07 20:00:50 +03:00
parent 0952faad43
commit a7b0ca02b9
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.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 = with python3.pkgs; [
metakernel
svgwrite
ipywidgets
cairosvg
numpy
];
# Tests are failing not because of Nix.
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 ];
};
}
+2
View File
@@ -1587,6 +1587,8 @@ self: super: with self; {
calmjs-parse = callPackage ../development/python-modules/calmjs-parse { };
calysto = callPackage ../development/python-modules/calysto { };
camel-converter = callPackage ../development/python-modules/camel-converter { };
can = callPackage ../development/python-modules/can { };