python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / face / default.nix
blobf3889cc5faa9a9332e8accdb889afc66183f3a9c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   boltons,
6   pytestCheckHook,
7   pythonOlder,
8   setuptools,
9 }:
11 buildPythonPackage rec {
12   pname = "face";
13   version = "22.0.0";
14   pyproject = true;
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-1daS+QvI9Zh7Y25H42OEubvaSZqvCneqCwu+g0x2kj0=";
21   };
23   build-system = [ setuptools ];
25   dependencies = [ boltons ];
27   nativeCheckInputs = [ pytestCheckHook ];
29   pythonImportsCheck = [ "face" ];
31   disabledTests = [
32     # Assertion error as we take the Python release into account
33     "test_search_prs_basic"
34   ];
36   meta = with lib; {
37     description = "Command-line interface parser and framework";
38     longDescription = ''
39       A command-line interface parser and framework, friendly for
40       users, full-featured for developers.
41     '';
42     homepage = "https://github.com/mahmoud/face";
43     license = licenses.bsd3;
44     maintainers = with maintainers; [ twey ];
45   };