ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / x256 / default.nix
blob4430fa2e4b8a080dc7f3672f4240a8d398872155
1 { lib, buildPythonPackage, fetchPypi
2 }:
4 buildPythonPackage rec {
5   pname = "x256";
6   version = "0.0.3";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "00g02b9a6jsl377xb5fmxvkjff3lalw21n430a4zalqyv76dnmgq";
11   };
13   doCheck = false;
15   meta = with lib; {
16     description = "Find the nearest xterm 256 color index for an RGB";
17     homepage = "https://github.com/magarcia/python-x256";
18     license = licenses.mit;
19     maintainers = with maintainers; [ Scriptkiddi ];
20   };