blob: 074e1da03386c9d5f108f9f0f6ea2159b52fa99f (
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
35
36
37
38
|
{ lib
, buildPythonPackage
, fetchFromGitHub
, pudb
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "recline";
version = "2023.5";
format = "pyproject";
src = fetchFromGitHub {
owner = "NetApp";
repo = "recline";
rev = "v${version}";
sha256 = "sha256-jsWOPkzhN4D+Q/lK5yWg1kTgFkmOEIQY8O7oAXq5Nak=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pudb
pytestCheckHook
];
pythonImportsCheck = [ "recline" ];
meta = with lib; {
description = "This library helps you quickly implement an interactive command-based application";
homepage = "https://github.com/NetApp/recline";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}
|