summary refs log blame commit diff
path: root/pkgs/development/python-modules/x256/default.nix
blob: d728ad927a610afb2aa8336fa757f6f2a0df1433 (plain) (tree)



















                                                                            
{ stdenv, buildPythonPackage, fetchPypi
}:

buildPythonPackage rec {
  pname = "x256";
  version = "0.0.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "00g02b9a6jsl377xb5fmxvkjff3lalw21n430a4zalqyv76dnmgq";
  };

  meta = with stdenv.lib; {
    description = "Return the nearest xterm 256 color code for rgb inputs.";
    homepage = https://github.com/magarcia/python-x256;
    license = licenses.mit;
    maintainers = with maintainers; [ scriptkiddi ];
  };
}