nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
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.12";
14 pyproject = true;
15
16 src = fetchFromGitHub {
17 owner = "NetApp";
18 repo = "recline";
19 tag = "v${version}";
20 sha256 = "sha256-xEH6fEq84nD3X6bPj1Yw36mjwHKlFKsVaMh4Iogzl18=";
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 = {
35 description = "This library helps you quickly implement an interactive command-based application";
36 homepage = "https://github.com/NetApp/recline";
37 license = lib.licenses.bsd3;
38 maintainers = [ ];
39 };
40}