Unverified Commit 3cda14a6 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #247291 from marsam/add-getjump

python310Packages.getjump: init at 2.4.0
parents 960705f0 4d47a405
Loading
Loading
Loading
Loading
+43 −0
Original line number Diff line number Diff line
{ lib
, beautifulsoup4
, buildPythonPackage
, fetchPypi
, pillow
, poetry-core
, requests
, rich
}:

buildPythonPackage rec {
  pname = "getjump";
  version = "2.4.0";
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-gu6h9Yb0xdfvdmoeZGQPFCJhBJxuQ4iWlQquig1ljnY=";
  };

  nativeBuildInputs = [
    poetry-core
  ];

  propagatedBuildInputs = [
    beautifulsoup4
    pillow
    requests
    rich
  ];

  pythonImportsCheck = [
    "getjump"
  ];

  meta = with lib; {
    description = "Get and save images from jump web viewer";
    homepage = "https://github.com/eggplants/getjump";
    license = licenses.mit;
    maintainers = [ maintainers.marsam ];
    mainProgram = "jget";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -4180,6 +4180,8 @@ self: super: with self; {

  georss-wa-dfes-client = callPackage ../development/python-modules/georss-wa-dfes-client { };

  getjump = callPackage ../development/python-modules/getjump { };

  getmac = callPackage ../development/python-modules/getmac { };

  getkey = callPackage ../development/python-modules/getkey { };