nix/pkgs/pywalfox.nix
2022-07-15 22:05:23 -04:00

22 lines
527 B
Nix

{
lib,
python3Packages,
}:
python3Packages.buildPythonPackage rec {
pname = "pywalfox";
version = "2.7.4";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-Wec9fic4lXT7gBY04D2EcfCb/gYoZcrYA/aMRWaA7WY=";
};
doCheck = false;
meta = with lib; {
homepage = "https://github.com/Frewacom/pywalfox";
description = "Dynamic theming of Firefox (and Thunderbird) using your Pywal colors";
license = licenses.mpl20;
maintainers = with maintainers; [thehedgeh0g];
};
}