Skip to content

Commit

Permalink
Revert "python3Packages.click: 8.1.7 -> 8.2.0"
Browse files Browse the repository at this point in the history
This reverts commit c3470e7.

Released, but not yet published and seems to break typer and pip-tools
among others.
  • Loading branch information
mweinelt committed Jan 20, 2025
1 parent 3605118 commit 3fd1fec
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions pkgs/development/python-modules/click/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
flit-core,
importlib-metadata,
pytestCheckHook,

# large-rebuild downstream dependencies and applications
@@ -15,17 +16,19 @@

buildPythonPackage rec {
pname = "click";
version = "8.2.0";
pyproject = true;
version = "8.1.7";
format = "setuptools";

disabled = pythonOlder "3.7";

src = fetchFromGitHub {
owner = "pallets";
repo = "click";
tag = version;
hash = "sha256-YjceWqNrMGu4ABVCZI+GLmXtptQfOiykbU4VK3x9j2A=";
hash = "sha256-8YqIKRyw5MegnRwAO7YTCZateEFQFTH2PHpE8gTPTow=";
};

build-system = [ flit-core ];
propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [ importlib-metadata ];

nativeCheckInputs = [ pytestCheckHook ];

@@ -45,7 +48,6 @@ buildPythonPackage rec {
};

meta = with lib; {
changelog = "https://github.com/pallets/click/blob/${src.tag}/CHANGES.rst";
homepage = "https://click.palletsprojects.com/";
description = "Create beautiful command line interfaces in Python";
longDescription = ''

0 comments on commit 3fd1fec

Please sign in to comment.