Unverified Commit 85f94e7b authored by Pavel Sobolev's avatar Pavel Sobolev
Browse files

python3Packages.mobi: init at 0.3.3

parent 7e5e43ef
Loading
Loading
Loading
Loading
+44 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };