python311Packages.executing: 1.2.0 -> 2.0.1

https://github.com/alexmojaki/executing/compare/v1.2.0...v2.0.1
This commit is contained in:
Martin Weinelt 2023-12-06 16:23:12 +01:00
parent 637941d278
commit c523899f6b
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,18 +1,23 @@
{ lib
, asttokens
, buildPythonPackage
, fetchFromGitHub
, littleutils
, pytestCheckHook
, pythonAtLeast
, pythonOlder
, rich
# build-system
, setuptools
, setuptools-scm
# tests
, asttokens
, littleutils
, rich
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "executing";
version = "1.2.0";
version = "2.0.1";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -21,10 +26,11 @@ buildPythonPackage rec {
owner = "alexmojaki";
repo = pname;
rev = "v${version}";
hash = "sha256-3M3uSJ5xQ5Ciy8Lz21u9zjju/7SBSFHobCqSiJ6AP8M=";
hash = "sha256-PBvfkv9GQ5Vj5I5SygtmHXtqqHMJ4XgNV1/I+lSU0/U=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
@ -36,6 +42,11 @@ buildPythonPackage rec {
rich
];
disabledTests = [
# requires ipython, which causes a circular dependency
"test_two_statement_lookups"
];
pythonImportsCheck = [
"executing"
];