summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/bump2version/package.py
blob: 6a58bda6ec86ece97f89ea39e851c1d2f5393199 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2024 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 Bump2version(PythonPackage):
    """This is a maintained fork of the excellent bumpversion project."""

    homepage = "https://github.com/c4urself/bump2version"
    pypi = "bump2version/bump2version-1.0.1.tar.gz"

    depends_on("py-setuptools", type="build")

    license("MIT")

    version("1.0.1", sha256="762cb2bfad61f4ec8e2bdf452c7c267416f8c70dd9ecb1653fd0bbb01fa936e6")