Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions repos/spack_repo/builtin/packages/py_p2j/package.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright Spack Project Developers. See COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack_repo.builtin.build_systems.python import PythonPackage

from spack.package import *


class PyP2j(PythonPackage):
"""p2j: Convert Python scripts to Jupyter notebook with minimal intervention"""

homepage = "https://github.com/raibosome/python2jupyter"
pypi = "p2j/p2j-1.3.2.tar.gz"

license("MIT", checked_by="mll8777")

version("1.3.2", sha256="6a492350953a87ceaf190b13141242f604b597efd668c2b026241c4a4f4777f5")

depends_on("py-setuptools", type="build")
depends_on("python@3.6:", type=("build", "run"))
Loading