f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
33 lines
629 B
Nix
33 lines
629 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
setuptools,
|
|
buildPythonPackage,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "huepy";
|
|
version = "1.2.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "huepy";
|
|
inherit version;
|
|
hash = "sha256-Wym+73lzEvt2BhiLxc2Y94q49+AVdkJ6kxLxybILdZ0=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "huepy" ];
|
|
|
|
# no test
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Print awesomely in terminals";
|
|
homepage = "https://pypi.org/project/huepy/";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ tochiaha ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|