Unverified Commit 0899bab4 authored by provokateurin's avatar provokateurin
Browse files

python3Packages.apeye: init at 1.4.1

parent 1c85f79b
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{
  buildPythonPackage,
  fetchPypi,
  flit-core,
  apeye-core,
  domdf-python-tools,
  platformdirs,
  requests,
  lib,
}:
buildPythonPackage rec {
  pname = "apeye";
  version = "1.4.1";
  pyproject = true;

  src = fetchPypi {
    inherit version;
    pname = "apeye";
    hash = "sha256-FOpUL61onjv9vaIYmjVKSQjpCu5L+EwVq3XWhFPXajY=";
  };

  build-system = [ flit-core ];

  dependencies = [
    apeye-core
    domdf-python-tools
    platformdirs
    requests
  ];

  pythonImportsCheck = [ "apeye" ];

  meta = {
    description = "Handy tools for working with URLs and APIs";
    homepage = "https://github.com/domdfcoding/apeye";
    license = lib.licenses.gpl3Plus;
    maintainers = [ ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -778,6 +778,8 @@ self: super: with self; {
  apcaccess = callPackage ../development/python-modules/apcaccess { };
  apeye = callPackage ../development/python-modules/apeye { };
  apeye-core = callPackage ../development/python-modules/apeye-core { };
  apipkg = callPackage ../development/python-modules/apipkg { };