1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 pudb,
6 pytestCheckHook,
7 setuptools,
8}:
9
10buildPythonPackage rec {
11 pname = "recline";
12 version = "2023.5";
13 format = "pyproject";
14
15 src = fetchFromGitHub {
16 owner = "NetApp";
17 repo = "recline";
18 rev = "v${version}";
19 sha256 = "sha256-jsWOPkzhN4D+Q/lK5yWg1kTgFkmOEIQY8O7oAXq5Nak=";
20 };
21
22 nativeBuildInputs = [ setuptools ];
23
24 nativeCheckInputs = [
25 pudb
26 pytestCheckHook
27 ];
28
29 pythonImportsCheck = [ "recline" ];
30
31 meta = with lib; {
32 description = "This library helps you quickly implement an interactive command-based application";
33 homepage = "https://github.com/NetApp/recline";
34 license = licenses.bsd3;
35 maintainers = with maintainers; [ ];
36 };
37}