Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / image-go-nord / default.nix
blob4daa574e79e75291701ef71dd74382828bb15498
1 { lib, buildPythonPackage, fetchFromGitHub, pillow, pytestCheckHook, pythonOlder }:
3 buildPythonPackage rec {
4   pname = "image-go-nord";
5   version = "0.1.7";
6   format = "setuptools";
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=";
14   };
16   propagatedBuildInputs = [ pillow ];
18   nativeCheckInputs = [ pytestCheckHook ];
20   meta = with lib; {
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 ];
25   };