
* Add py-nanoplot and py-nanostat * Add myself as spack package maintainer * Remove python version requirement * Remove python dependency * Apply suggestions from code review Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Update package.py: remove python dependency * Set dependency types * Update py-nanomath package.py * Update py-nanoplot package.py * Update py-nanostat package.py * Add missing py-python-deprecated dependency * Make kaleido a source package * Fix py-nanoget deps * Kaleido lint * Nanoget lint * Nanomath lint * Nanoplot lint * Nanostat lint * Another kaleido lint I missed * py-nanoplot missed lint * py-nanostat missed lint * py-kaleido even more missed lint * The linter really can't make up its mind * The linter REALLY can't make up its mind * Add py-python-deprecated package --------- Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
24 lines
853 B
Python
24 lines
853 B
Python
# 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 PyNanoget(PythonPackage):
|
|
"""Functions to extract information from Oxford Nanopore sequencing data and alignments"""
|
|
|
|
homepage = "https://github.com/wdecoster/nanoget"
|
|
pypi = "nanoget/nanoget-1.19.3.tar.gz"
|
|
|
|
maintainers("Pandapip1")
|
|
|
|
version("1.19.3", sha256="da981810edb1cbe42cbbfbe5fcf753f29bf5555204cd51256b28a284a036a71b")
|
|
|
|
depends_on("py-setuptools", type=("build",))
|
|
depends_on("py-pandas@2.0.0:", type=("build", "run"))
|
|
depends_on("py-numpy", type=("build", "run"))
|
|
depends_on("py-biopython", type=("build", "run"))
|
|
depends_on("py-pysam@0.10.0.1:", type=("build", "run"))
|