about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pycritty/default.nix
blob: 1044d2e72e77cb227d49ae8bf2a2507dc562a332 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib, buildPythonPackage, fetchPypi, pythonOlder, pyyaml }:

buildPythonPackage rec {
  pname = "pycritty";
  version = "0.4.0";
  format = "setuptools";
  disabled = pythonOlder "3.6";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-Lh2zAEJTyzI8dJTNuyaf7gzhySMpui+CF9qRiubwFhE=";
  };

  postPatch = ''
    # remove custom install
    substituteInPlace setup.py \
      --replace "'install': PostInstallHook," ""
  '';

  propagatedBuildInputs = [ pyyaml ];

  # The package does not include any tests to run
  doCheck = false;

  pythonImportsCheck = [ "pycritty" ];

  meta = with lib; {
    description = "A CLI tool for changing your alacritty configuration on the fly";
    mainProgram = "pycritty";
    homepage = "https://github.com/antoniosarosi/pycritty";
    license = licenses.mit;
    maintainers = with maintainers; [ jperras ];
  };
}