a2f49342d8
Notably fwupd, pipewire and flatpak. I want to focus on GNOME and other packages I still actually use. Pipewire is still important but I have not touched the packaging in a while.
30 lines
581 B
Nix
30 lines
581 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, click
|
|
, six
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "click-spinner";
|
|
version = "0.1.10";
|
|
|
|
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; [ ];
|
|
};
|
|
}
|