pywal: init at 2.0.5 (#38443)

This commit is contained in:
Isaac Shapira
2018-04-06 09:57:20 +02:00
committed by Robert Schütz
parent 098c851dcb
commit ff5baea979
3 changed files with 35 additions and 0 deletions
+28
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 ];
};
}