blob: 541011ea2b50eb4f0d6b7c8dceab15d23a239b93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
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;
};
}
|