nixpkgs/pkgs/development/python-modules/x256/default.nix

23 lines
495 B
Nix
Raw Normal View History

2018-12-15 11:31:54 +01:00
{ stdenv, buildPythonPackage, fetchPypi
}:
buildPythonPackage rec {
pname = "x256";
version = "0.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "00g02b9a6jsl377xb5fmxvkjff3lalw21n430a4zalqyv76dnmgq";
};
doCheck = false;
2018-12-15 11:31:54 +01:00
meta = with stdenv.lib; {
description = "Find the nearest xterm 256 color index for an RGB";
2018-12-15 11:31:54 +01:00
homepage = https://github.com/magarcia/python-x256;
license = licenses.mit;
maintainers = with maintainers; [ Scriptkiddi ];
2018-12-15 11:31:54 +01:00
};
}