15 buildPythonPackage rec {
20 src = fetchFromGitHub {
22 repo = "python-imgcat";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-FsLa8Z4aKuj3E5twC2LTXZDM0apmyYfgeyZQu/wLdAo=";
28 substituteInPlace setup.py \
29 --replace-fail "'pytest-runner<5.0'" ""
32 build-system = [ setuptools ];
43 pythonImportsCheck = [ "imgcat" ];
46 description = "Imgcat in Python";
47 homepage = "https://github.com/wookayin/python-imgcat";
48 changelog = "https://github.com/wookayin/python-imgcat/releases/tag/v${version}";
49 license = lib.licenses.mit;
50 maintainers = with lib.maintainers; [ fab ];