pywal: init at 2.0.5 (#38443)

This commit is contained in:
Isaac Shapira 2018-04-06 01:57:20 -06:00 committed by Robert Schütz
parent 098c851dcb
commit ff5baea979
3 changed files with 35 additions and 0 deletions

View file

@ -72,6 +72,11 @@
github = "FireyFly";
name = "Jonas Höglund";
};
Fresheyeball = {
email = "fresheyeball@gmail.com";
github = "fresheyeball";
name = "Isaac Shapira";
};
Gonzih = {
email = "gonzih@gmail.com";
github = "Gonzih";

View file

@ -0,0 +1,28 @@
{ lib, python3Packages, fetchFromGitHub, imagemagick, feh }:
python3Packages.buildPythonApplication rec {
pname = "pywal";
version = "2.0.5";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "117f61db013409ee2657aab9230cc5c2cb2b428c17f7fbcf664909122962165e";
};
# necessary for imagemagick to be found during tests
buildInputs = [ imagemagick ];
makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ imagemagick feh ]}" ];
preCheck = ''
mkdir tmp
HOME=$PWD/tmp
'';
meta = with lib; {
description = "Generate and change colorschemes on the fly. A 'wal' rewrite in Python 3.";
homepage = https://github.com/dylanaraps/pywal;
license = licenses.mit;
maintainers = with maintainers; [ Fresheyeball ];
};
}

View file

@ -4449,6 +4449,8 @@ with pkgs;
pytrainer = callPackage ../applications/misc/pytrainer { };
pywal = callPackage ../tools/graphics/pywal {};
remarshal = callPackage ../development/tools/remarshal { };
rtaudio = callPackage ../development/libraries/audio/rtaudio { };