Unverified Commit 2a951480 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python313Packages.jaraco-abode: 6.2.1 -> 6.3.0 (#393550)

parents 1e5867bd dbd4a16a
Loading
Loading
Loading
Loading
+10 −4
Original line number Diff line number Diff line
@@ -7,7 +7,10 @@
  setuptools-scm,
  beautifulsoup4,
  boto3,
  freezegun,
  lxml,
  openpyxl,
  parameterized,
  pdoc,
  pytestCheckHook,
  requests-mock,
@@ -16,7 +19,7 @@

buildPythonPackage rec {
  pname = "bx-py-utils";
  version = "98";
  version = "108";

  disabled = pythonOlder "3.10";

@@ -26,7 +29,7 @@ buildPythonPackage rec {
    owner = "boxine";
    repo = "bx_py_utils";
    tag = "v${version}";
    hash = "sha256-VJ4510HLTqdRfeUEe2srT8+W9AaRpi+Mm6srZOOp0fc=";
    hash = "sha256-VMGP5yl+7kiZ3Ww4ESJPHABDCMZG1VsVDgVoLnGU5r4=";
  };

  postPatch = ''
@@ -59,7 +62,10 @@ buildPythonPackage rec {
  nativeCheckInputs = [
    beautifulsoup4
    boto3
    freezegun
    lxml
    openpyxl
    parameterized
    pdoc
    pytestCheckHook
    requests-mock
@@ -82,9 +88,9 @@ buildPythonPackage rec {

  meta = {
    description = "Various Python utility functions";
    mainProgram = "publish";
    mainProgram = "bx_py_utils";
    homepage = "https://github.com/boxine/bx_py_utils";
    changelog = "https://github.com/boxine/bx_py_utils/releases/tag/v${version}";
    changelog = "https://github.com/boxine/bx_py_utils/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
+12 −14
Original line number Diff line number Diff line
@@ -9,15 +9,15 @@
  jaraco-collections,
  jaraco-itertools,
  jaraco-context,
  jaraco-functools,
  jaraco-net,
  keyring,
  lomond,
  more-itertools,
  platformdirs,
  pytest-responses,
  pytestCheckHook,
  pythonOlder,
  requests,
  requests-mock,
  requests-toolbelt,
  setuptools,
  setuptools-scm,
@@ -25,24 +25,22 @@

buildPythonPackage rec {
  pname = "jaraco-abode";
  version = "6.2.1";
  version = "6.3.0";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "jaraco";
    repo = "jaraco.abode";
    tag = "v${version}";
    hash = "sha256-t5AI2wpSM6xMzULEZYkUgGvcODM8PVxdd2Vy/PV0Ga4=";
    hash = "sha256-AqnyQdLkg2vobVJ84X15AB0Yyj3gZf4rP3pEdk3MqZ4=";
  };

  nativeBuildInputs = [
  build-system = [
    setuptools
    setuptools-scm
  ];

  propagatedBuildInputs = [
  dependencies = [
    requests
    lomond
    colorlog
@@ -57,11 +55,12 @@ buildPythonPackage rec {
    bx-py-utils
    platformdirs
    jaraco-itertools
    jaraco-functools
  ];

  nativeCheckInputs = [
    pytest-responses
    pytestCheckHook
    requests-mock
  ];

  pythonImportsCheck = [ "jaraco.abode" ];
@@ -79,13 +78,12 @@ buildPythonPackage rec {
    "test_camera_capture_no_control_URLs"
  ];

  meta = with lib; {
    changelog = "https://github.com/jaraco/jaraco.abode/blob/${version}/CHANGES.rst";
  meta = {
    changelog = "https://github.com/jaraco/jaraco.abode/blob/${src.tag}/NEWS.rst";
    homepage = "https://github.com/jaraco/jaraco.abode";
    description = "Library interfacing to the Abode home security system";
    mainProgram = "abode";
    license = licenses.mit;
    maintainers = with maintainers; [
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      jamiemagee
      dotlambda
    ];