12 buildPythonPackage rec {
13 pname = "rich-pixels";
17 src = fetchFromGitHub {
18 owner = "darrenburns";
21 hash = "sha256-zI6jtEdmBAEGxyASo/6fiHdzwzoSwXN7A5x1CmYS5qc=";
37 propagatedBuildInputs = [
46 pythonImportsCheck = [ "rich_pixels" ];
49 description = "A Rich-compatible library for writing pixel images and ASCII art to the terminal";
50 homepage = "https://github.com/darrenburns/rich-pixels";
51 changelog = "https://github.com/darrenburns/rich-pixels/releases/tag/${src.rev}";
52 # upstream has no license specified
53 # https://github.com/darrenburns/rich-pixels/issues/11
54 license = licenses.unfree;
55 maintainers = with maintainers; [ figsoda ];