Unverified Commit 021f5eaf authored by Amadej Kastelic's avatar Amadej Kastelic
Browse files

python3Packages.inwx-domrobot: init at 3.2.0

parent 07f3e9c9
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{
  lib,
  fetchFromGitHub,
  buildPythonPackage,
  setuptools,
  requests,
}:

buildPythonPackage rec {
  pname = "inwx-domrobot";
  version = "3.2.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "inwx";
    repo = "python-client";
    tag = "v${version}";
    hash = "sha256-Nbs3xroJD61NbpaiTdjA3VFxzXIlnqmB1d7SJDj8VN8=";
  };

  build-system = [ setuptools ];

  dependencies = [ requests ];

  # No tests
  doCheck = false;

  pythonImportsCheck = [ "INWX" ];

  meta = {
    description = "INWX Domrobot Python Client";
    homepage = "https://github.com/inwx/python-client";
    changelog = "https://github.com/inwx/python-client/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.amadejkastelic ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -6895,6 +6895,8 @@ self: super: with self; {
  invoke = callPackage ../development/python-modules/invoke { };
  inwx-domrobot = callPackage ../development/python-modules/inwx-domrobot { };
  iocapture = callPackage ../development/python-modules/iocapture { };
  iocextract = callPackage ../development/python-modules/iocextract { };