mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
41 lines
866 B
Nix
41 lines
866 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
imagemagick,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "pywal16";
|
|
version = "3.6.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eylles";
|
|
repo = "pywal16";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-YKHOH1bEsZHTgYm8AYpfA6C8RtWxAqNQ+GHMcdaj/JU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ python3.pkgs.setuptools ];
|
|
|
|
nativeCheckInputs = [
|
|
python3.pkgs.pytestCheckHook
|
|
imagemagick
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
pythonImportsCheck = [ "pywal" ];
|
|
|
|
meta = {
|
|
description = "16 colors fork of pywal";
|
|
homepage = "https://github.com/eylles/pywal16";
|
|
changelog = "https://github.com/eylles/pywal16/blob/${src.rev}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ moraxyc ];
|
|
mainProgram = "wal";
|
|
};
|
|
}
|