mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-26 10:14:48 +00:00
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
pytestCheckHook,
|
|
ruff,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "hyprland-schema";
|
|
version = "0.7.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BlueManCZ";
|
|
repo = "hyprland-schema";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-36nSnuiWtJeCGcxJB2hNlbWEd0t2Ke5hhsUJddoap+w=";
|
|
};
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
# load-bearing: generate_schema.py formats the module it emits with ruff, and
|
|
# test_generate.py asserts on the resulting double-quote style. Without ruff on
|
|
# PATH that formatting is silently skipped and the test fails.
|
|
ruff
|
|
];
|
|
|
|
pythonImportsCheck = [ "hyprland_schema" ];
|
|
|
|
meta = {
|
|
description = "Typed Python schema for every Hyprland configuration option";
|
|
homepage = "https://github.com/BlueManCZ/hyprland-schema";
|
|
changelog = "https://github.com/BlueManCZ/hyprland-schema/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ sophronesis ];
|
|
};
|
|
})
|