at master 770 B view raw
1{ 2 lib, 3 argcomplete, 4 buildPythonPackage, 5 fetchFromGitHub, 6 pudb, 7 pytestCheckHook, 8 setuptools, 9}: 10 11buildPythonPackage rec { 12 pname = "recline"; 13 version = "2025.6"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "NetApp"; 18 repo = "recline"; 19 tag = "v${version}"; 20 sha256 = "sha256-WBMt5jDPCBmTgVdYDN662uU2HVjB1U3GYJwn0P56WsI="; 21 }; 22 23 build-system = [ setuptools ]; 24 25 dependencies = [ argcomplete ]; 26 27 nativeCheckInputs = [ 28 pudb 29 pytestCheckHook 30 ]; 31 32 pythonImportsCheck = [ "recline" ]; 33 34 meta = with lib; { 35 description = "This library helps you quickly implement an interactive command-based application"; 36 homepage = "https://github.com/NetApp/recline"; 37 license = licenses.bsd3; 38 maintainers = [ ]; 39 }; 40}