1 { lib, buildPythonPackage, fetchPypi, pythonOlder, pyyaml }:
3 buildPythonPackage rec {
7 disabled = pythonOlder "3.6";
10 inherit pname version;
11 hash = "sha256-Lh2zAEJTyzI8dJTNuyaf7gzhySMpui+CF9qRiubwFhE=";
15 # remove custom install
16 substituteInPlace setup.py \
17 --replace "'install': PostInstallHook," ""
20 propagatedBuildInputs = [ pyyaml ];
22 # The package does not include any tests to run
25 pythonImportsCheck = [ "pycritty" ];
28 description = "A CLI tool for changing your alacritty configuration on the fly";
29 mainProgram = "pycritty";
30 homepage = "https://github.com/antoniosarosi/pycritty";
31 license = licenses.mit;
32 maintainers = with maintainers; [ jperras ];