ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / image-go-nord / default.nix
bloba8fb5df9433d1eec215ecc2a2b07cbad41360647
1 { lib, buildPythonPackage, fetchFromGitHub, pillow, pytestCheckHook, pythonOlder }:
3 buildPythonPackage rec {
4   pname = "image-go-nord";
5   version = "0.1.5";
6   disabled = pythonOlder "3.7";
8   src = fetchFromGitHub {
9     owner = "Schrodinger-Hat";
10     repo = "ImageGoNord-pip";
11     rev = "v${version}";
12     sha256 = "sha256-O34COlGsXExJShRd2zvhdescNfYXWLNuGpkjcH3koPU=";
13   };
15   propagatedBuildInputs = [ pillow ];
17   checkInputs = [ pytestCheckHook ];
19   meta = with lib; {
20     description = "A tool that can convert rgb images to nordtheme palette";
21     homepage = "https://github.com/Schrodinger-Hat/ImageGoNord-pip";
22     license = licenses.mit;
23     maintainers = with maintainers; [ kranzes ];
24   };