File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
repos/spack_repo/builtin/packages/py_pysmiles Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 1+ # Copyright Spack Project Developers. See COPYRIGHT file for details.
2+ #
3+ # SPDX-License-Identifier: (Apache-2.0 OR MIT)
4+
5+ from spack_repo .builtin .build_systems .python import PythonPackage
6+
7+ from spack .package import *
8+
9+
10+ class PyPysmiles (PythonPackage ):
11+ """A lightweight Python-only library for reading and writing SMILES strings."""
12+
13+ homepage = "https://github.com/pckroon/pysmiles"
14+ pypi = "pysmiles/pysmiles-2.0.0.tar.gz"
15+
16+ license ("Apache-2.0" )
17+ maintainers ("adamwitmer" )
18+
19+ version ("2.0.0" , sha256 = "9bd1da9bf172fc79f71d647d21bbba34178702c664ae0778e59b4d4d149cbe4d" )
20+
21+ depends_on ("py-networkx" , type = ("build" , "run" ))
22+ depends_on (
"[email protected] :" ,
type = "build" )
23+ depends_on ("py-pbr" , type = ("build" , "run" ))
You can’t perform that action at this time.
0 commit comments