1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "x256";
9 version = "0.0.3";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "00g02b9a6jsl377xb5fmxvkjff3lalw21n430a4zalqyv76dnmgq";
15 };
16
17 doCheck = false;
18
19 meta = with lib; {
20 description = "Find the nearest xterm 256 color index for an RGB";
21 homepage = "https://github.com/magarcia/python-x256";
22 license = licenses.mit;
23 maintainers = with maintainers; [ Scriptkiddi ];
24 };
25}