ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
39 lines
737 B
Nix
39 lines
737 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, blessed
|
|
, docopt
|
|
, pillow
|
|
, requests
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pixcat";
|
|
version = "0.1.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "657c8fe04513caecccd6086b347aa4b85db6b4c0f761b162cb9cd789abe7abb6";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
blessed
|
|
docopt
|
|
pillow
|
|
requests
|
|
];
|
|
|
|
pythonImportsCheck = [ "pixcat" ];
|
|
|
|
meta = with lib; {
|
|
description = "Display images on a kitty terminal with optional resizing";
|
|
mainProgram = "pixcat";
|
|
homepage = "https://github.com/mirukan/pixcat";
|
|
license = licenses.lgpl3;
|
|
maintainers = [ maintainers.tilcreator ];
|
|
};
|
|
}
|