Commit c3cef7c9 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.openerz-api: refactor

parent 53096db5
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -4,23 +4,28 @@
, pytestCheckHook
, pythonOlder
, requests
, setuptools
, testfixtures
}:

buildPythonPackage rec {
  pname = "openerz-api";
  version = "0.3.0";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "misialq";
    repo = pname;
    repo = "openerz-api";
    rev = "refs/tags/v${version}";
    hash = "sha256-CwK61StspZJt0TALv76zfibUzlriwp9HRoYOtX9bU+c=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    requests
  ];
@@ -34,11 +39,6 @@ buildPythonPackage rec {
    "openerz_api"
  ];

  disabledTests = [
    # Assertion issue
    "test_sensor_make_api_request"
  ];

  meta = with lib; {
    description = "Python module to interact with the OpenERZ API";
    homepage = "https://github.com/misialq/openerz-api";