Merge pull request #52201 from Scriptkiddi/gif-for-cli

Gif for cli
This commit is contained in:
Silvan Mosberger
2018-12-31 03:09:08 +01:00
committed by GitHub
4 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi
}:
buildPythonPackage rec {
pname = "x256";
version = "0.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "00g02b9a6jsl377xb5fmxvkjff3lalw21n430a4zalqyv76dnmgq";
};
doCheck = false;
meta = with stdenv.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 ];
};
}