My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/click-spinner/default.nix

30 lines
583 B

{ 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=";
};
checkInputs = [
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; [ jtojnar ];
};
}