Merge pull request #240527 from fabaff/objgraph-bump

python311Packages.objgraph: 3.5.0 -> 3.6.0
This commit is contained in:
Fabian Affolter
2023-07-03 08:12:04 +02:00
committed by GitHub
2 changed files with 29 additions and 26 deletions
@@ -1,41 +1,40 @@
{ lib
, buildPythonPackage
, pythonOlder
, bx-py-utils
, colorlog
, fetchFromGitHub
, fetchPypi
, importlib-resources
, jaraco_classes
, jaraco_collections
, jaraco_itertools
, jaraco-context
, jaraco-net
, keyring
, lomond
, more-itertools
, platformdirs
, pytestCheckHook
, pythonOlder
, requests
, requests-mock
, requests-toolbelt
, setuptools
, setuptools-scm
, requests
, lomond
, colorlog
, keyring
, requests-toolbelt
, jaraco_collections
, jaraco-context
, jaraco_classes
, jaraco-net
, more-itertools
, importlib-resources
, bx-py-utils
, platformdirs
, jaraco_itertools
, pytestCheckHook
, requests-mock
}:
buildPythonPackage rec {
pname = "jaraco-abode";
version = "5.0.1";
version = "5.1.0";
format = "pyproject";
disabled = pythonOlder "3.7";
format = "pyproject";
src = fetchFromGitHub {
owner = "jaraco";
repo = "jaraco.abode";
rev = "refs/tags/v${version}";
hash = "sha256-vKlvZrgRKv2C43JLfl4Wum4Icz9yOKEaB6qKapZ0rwQ=";
hash = "sha256-guLgmhjFgYLRZsQ0j92NXkktZ80bwVvMUJLZeg3dgxE=";
};
postPatch = ''
@@ -67,13 +66,15 @@ buildPythonPackage rec {
jaraco_itertools
];
pythonImportsCheck = [ "jaraco.abode" ];
nativeCheckInputs = [
pytestCheckHook
requests-mock
];
pythonImportsCheck = [
"jaraco.abode"
];
preCheck = ''
export HOME=$TEMP
'';
@@ -83,10 +84,12 @@ buildPythonPackage rec {
"test_cookies"
"test_empty_cookies"
"test_invalid_cookies"
# Issue with the regex
"test_camera_capture_no_control_URLs"
];
meta = with lib; {
changelog = "https://github.com/jaraco/jaraco.abode/blob/${src.rev}/CHANGES.rst";
changelog = "https://github.com/jaraco/jaraco.abode/blob/${version}/CHANGES.rst";
homepage = "https://github.com/jaraco/jaraco.abode";
description = "Library interfacing to the Abode home security system";
license = licenses.mit;
@@ -11,14 +11,14 @@
buildPythonPackage rec {
pname = "objgraph";
version = "3.5.0";
version = "3.6.0";
format = "setuptools";
disabled = pythonOlder "3.5" || isPyPy;
src = fetchPypi {
inherit pname version;
hash = "sha256-R1LKW8wOBRLkG4zE0ngKwv07PqvQO36VClWUwGID38Q=";
hash = "sha256-NpVnw3tPL5KBYLb27e3L6o/H6SmDGHf9EFbHipAMF9M=";
};
patches = [