python310.pkgs.recline: init at 2023.5

This commit is contained in:
Sandro Jäckel
2023-06-13 16:22:09 +02:00
parent fab29d1717
commit fde17beb21
2 changed files with 40 additions and 0 deletions
@@ -0,0 +1,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; [ SuperSandro2000 ];
};
}
+2
View File
@@ -10476,6 +10476,8 @@ self: super: with self; {
recipe-scrapers = callPackage ../development/python-modules/recipe-scrapers { };
recline = callPackage ../development/python-modules/recline { };
recoll = toPythonModule (pkgs.recoll.override {
python3Packages = self;
});