summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-incremental/package.py
blob: 8550e3759804bcea540eedd8d2d3429ee2515f0f (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 PyIncremental(PythonPackage):
    """A small library that versions your Python projects."""

    homepage = "https://github.com/twisted/incremental"
    pypi = "incremental/incremental-21.3.0.tar.gz"

    license("MIT")

    version("21.3.0", sha256="02f5de5aff48f6b9f665d99d48bfc7ec03b6e3943210de7cfc88856d755d6f57")

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