depot/third_party/nixpkgs/pkgs/applications/window-managers/hyprwm/hyprshade/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

34 lines
708 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, more-itertools
, click
}:
buildPythonPackage rec {
pname = "hyprshade";
version = "3.0.3";
format = "pyproject";
src = fetchFromGitHub {
owner = "loqusion";
repo = "hyprshade";
rev = "refs/tags/${version}";
hash = "sha256-vX1Cc170ifevn1aji5s0MI7G0zktPuvSpAbYpGPMudA=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [ more-itertools click ];
meta = with lib; {
homepage = "https://github.com/loqusion/hyprshade";
description = "Hyprland shade configuration tool";
license = licenses.mit;
maintainers = with maintainers; [ willswats ];
platforms = platforms.linux;
};
}