Unverified Commit 0ccf77dd authored by Ilan Joselevich's avatar Ilan Joselevich
Browse files

python3Packages.calysto-scheme: init at 1.4.7

parent a7b0ca02
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{ lib
, python3
, fetchFromGitHub
}:

python3.pkgs.buildPythonPackage rec {
  pname = "calysto-scheme";
  version = "1.4.7";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "Calysto";
    repo = "calysto_scheme";
    rev = "v${version}";
    hash = "sha256-5InImTbucggjf/tl8K31ZtLrwu5hqvggl7sYb0eqIEg=";
  };

  propagatedBuildInputs = with python3.pkgs; [
    yasi
    metakernel
  ];

  pythonImportsCheck = [ "calysto_scheme" ];

  meta = with lib; {
    description = "A Scheme kernel for Jupyter that can use Python libraries";
    homepage = "https://github.com/Calysto/calysto_scheme";
    changelog = "https://github.com/Calysto/calysto_scheme/blob/${src.rev}/ChangeLog.md";
    license = licenses.bsd3;
    maintainers = with maintainers; [ kranzes ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1589,6 +1589,8 @@ self: super: with self; {

  calysto = callPackage ../development/python-modules/calysto { };

  calysto-scheme = callPackage ../development/python-modules/calysto-scheme { };

  camel-converter = callPackage ../development/python-modules/camel-converter { };

  can = callPackage ../development/python-modules/can { };