evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / recline / default.nix
blobb60e2b6ebc1968390d3fe5b91049bb78f0628e4a
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pudb,
6   pytestCheckHook,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "recline";
12   version = "2024.7.1";
13   format = "pyproject";
15   src = fetchFromGitHub {
16     owner = "NetApp";
17     repo = "recline";
18     rev = "refs/tags/v${version}";
19     sha256 = "sha256-Qc4oofuhSZ2S5zuCY9Ce9ISldYI3MDUJXFc8VcXdLIU=";
20   };
22   nativeBuildInputs = [ setuptools ];
24   nativeCheckInputs = [
25     pudb
26     pytestCheckHook
27   ];
29   pythonImportsCheck = [ "recline" ];
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 = [ ];
36   };