1{
2 lib,
3 fetchPypi,
4 setuptools,
5 buildPythonPackage,
6}:
7
8buildPythonPackage rec {
9 pname = "huepy";
10 version = "1.2.1";
11 pyproject = true;
12
13 src = fetchPypi {
14 pname = "huepy";
15 inherit version;
16 hash = "sha256-Wym+73lzEvt2BhiLxc2Y94q49+AVdkJ6kxLxybILdZ0=";
17 };
18
19 build-system = [ setuptools ];
20
21 pythonImportsCheck = [ "huepy" ];
22
23 # no test
24 doCheck = false;
25
26 meta = {
27 description = "Print awesomely in terminals";
28 homepage = "https://pypi.org/project/huepy/";
29 license = lib.licenses.gpl3Only;
30 maintainers = with lib.maintainers; [ tochiaha ];
31 platforms = lib.platforms.all;
32 };
33}