83627f9931
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
37 lines
757 B
Nix
37 lines
757 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pudb,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "recline";
|
|
version = "2024.6";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "NetApp";
|
|
repo = "recline";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-wVUM5vkavdLDtwRlbtVlVaBOXX+7tcB+SxYe1jZdq9I=";
|
|
};
|
|
|
|
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; [ ];
|
|
};
|
|
}
|