mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
23 lines
487 B
Nix
23 lines
487 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "x256";
|
|
version = "0.0.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "00g02b9a6jsl377xb5fmxvkjff3lalw21n430a4zalqyv76dnmgq";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Find the nearest xterm 256 color index for an RGB";
|
|
homepage = "https://github.com/magarcia/python-x256";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Scriptkiddi ];
|
|
};
|
|
}
|
|
|