nixpkgs/pkgs/development/python-modules/click-spinner/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

31 lines
606 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, click
, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "click-spinner";
version = "0.1.10";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "h+rPnXKYlzol12Fe9X1Hgq6/kTpTK7pLKKN+Nm6XXa8=";
};
nativeCheckInputs = [
click
six
pytestCheckHook
];
meta = with lib; {
description = "Add support for showwing that command line app is active to Click";
homepage = "https://github.com/click-contrib/click-spinner";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}