Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pycritty / default.nix
blob1044d2e72e77cb227d49ae8bf2a2507dc562a332
1 { lib, buildPythonPackage, fetchPypi, pythonOlder, pyyaml }:
3 buildPythonPackage rec {
4   pname = "pycritty";
5   version = "0.4.0";
6   format = "setuptools";
7   disabled = pythonOlder "3.6";
9   src = fetchPypi {
10     inherit pname version;
11     hash = "sha256-Lh2zAEJTyzI8dJTNuyaf7gzhySMpui+CF9qRiubwFhE=";
12   };
14   postPatch = ''
15     # remove custom install
16     substituteInPlace setup.py \
17       --replace "'install': PostInstallHook," ""
18   '';
20   propagatedBuildInputs = [ pyyaml ];
22   # The package does not include any tests to run
23   doCheck = false;
25   pythonImportsCheck = [ "pycritty" ];
27   meta = with lib; {
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 ];
33   };