python3Packages.mobi: init at 0.3.3

This commit is contained in:
Pavel Sobolev 2023-09-26 12:58:43 +03:00
parent 7e5e43ef91
commit 85f94e7b1e
No known key found for this signature in database
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, loguru
, poetry-core
, setuptools
}:
buildPythonPackage rec {
pname = "mobi";
version = "0.3.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "iscc";
repo = "mobi";
rev = "v${version}";
hash = "sha256-g1L72MkJdrKQRsEdew+Qsn8LfCn8+cmj2pmY6s4nv2U=";
};
nativeBuildInputs = [
setuptools
poetry-core
];
propagatedBuildInputs = [
loguru
];
pythonImportsCheck = [
"mobi"
];
meta = with lib; {
description = "Library for unpacking unencrypted mobi files";
homepage = "https://github.com/iscc/mobi";
license = licenses.gpl3Only;
maintainers = with maintainers; [ paveloom ];
};
}

View File

@ -6808,6 +6808,8 @@ self: super: with self; {
moat-ble = callPackage ../development/python-modules/moat-ble { };
mobi = callPackage ../development/python-modules/mobi { };
mobly = callPackage ../development/python-modules/mobly { };
mocket = callPackage ../development/python-modules/mocket { };