summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pmw-patched/package.py
blob: 051c6eef4ea7d350a61bf704729aae4d772b78fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)


from spack.package import *


class PyPmwPatched(PythonPackage):
    """Schrodinger's Fork of Python megawidgets with essential patches applied.
    Pmw is a toolkit for building high-level compound widgets, or
    megawidgets, constructed using other widgets as component parts."""

    homepage = "https://github.com/schrodinger/pmw-patched"
    git = "https://github.com/schrodinger/pmw-patched"

    license("MIT")

    version("02-10-2020", commit="8bedfc8747e7757c1048bc5e11899d1163717a43")

    # pip silently replaces distutils with setuptools
    depends_on("py-setuptools", type="build")