1 { lib, buildPythonPackage, fetchFromGitHub, pillow, pytestCheckHook, pythonOlder }:
3 buildPythonPackage rec {
4 pname = "image-go-nord";
7 disabled = pythonOlder "3.7";
9 src = fetchFromGitHub {
10 owner = "Schrodinger-Hat";
11 repo = "ImageGoNord-pip";
12 rev = "refs/tags/v${version}";
13 hash = "sha256-vXABG3aJ6bwT37hfo909oF8qfAY3ZW18xvr1V8vSy5w=";
16 propagatedBuildInputs = [ pillow ];
18 nativeCheckInputs = [ pytestCheckHook ];
21 description = "A tool that can convert rgb images to nordtheme palette";
22 homepage = "https://github.com/Schrodinger-Hat/ImageGoNord-pip";
23 license = licenses.mit;
24 maintainers = with maintainers; [ kranzes ];