anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / autocommand / default.nix
blob8df21385cf04bec6ba7429d99f6eff2d2c12ddf5
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   pytestCheckHook,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "autocommand";
12   version = "2.2.2";
13   pyproject = true;
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "Lucretiel";
19     repo = "autocommand";
20     rev = "refs/tags/${version}";
21     hash = "sha256-9bv9Agj4RpeyNJvTLUaMwygQld2iZZkoLb81rkXOd3E=";
22   };
24   postPatch = ''
25     #  _MissingDynamic: `license` defined outside of `pyproject.toml` is ignored.
26     rm setup.py
27   '';
29   nativeBuildInputs = [ setuptools ];
31   # fails with: SyntaxError: invalid syntax
32   doCheck = false;
34   nativeCheckInputs = [ pytestCheckHook ];
36   pythonImportsCheck = [ "autocommand" ];
38   meta = with lib; {
39     description = "Autocommand turns a python function into a CLI program";
40     homepage = "https://github.com/Lucretiel/autocommand";
41     license = licenses.lgpl3Only;
42     maintainers = [ ];
43   };