diff options
| author | Albert Peschar <albert@peschar.net> | 2022-11-20 13:09:40 +0000 |
|---|---|---|
| committer | Albert Peschar <albert@peschar.net> | 2022-11-20 18:52:29 +0000 |
| commit | 7dc198a889cd79c9b274aabfb3cb76f01ab2bfed (patch) | |
| tree | 0f44ed83a688de2df264327a529d5983a52b3e9b /pkgs/development/python-modules/executing | |
| parent | ceccee458f1f578292ecd6115bb5f11fa6c0d46a (diff) | |
pythonPackages.executing: 0.8.2 -> 1.2.0
Diffstat (limited to 'pkgs/development/python-modules/executing')
| -rw-r--r-- | pkgs/development/python-modules/executing/default.nix | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/executing/default.nix b/pkgs/development/python-modules/executing/default.nix index 1a6664df6712..749561769e61 100644 --- a/pkgs/development/python-modules/executing/default.nix +++ b/pkgs/development/python-modules/executing/default.nix @@ -3,18 +3,20 @@ , buildPythonPackage , fetchFromGitHub , setuptools-scm +, pytestCheckHook +, littleutils }: buildPythonPackage rec { pname = "executing"; - version = "0.8.2"; + version = "1.2.0"; format = "setuptools"; src = fetchFromGitHub { owner = "alexmojaki"; repo = pname; rev = "v${version}"; - sha256 = "sha256-CDZQ9DONn7M+2/GtmM2G6nQPpI9dOd0ca+2F1PGRwO4="; + sha256 = "sha256-3M3uSJ5xQ5Ciy8Lz21u9zjju/7SBSFHobCqSiJ6AP8M="; }; nativeBuildInputs = [ @@ -25,10 +27,10 @@ buildPythonPackage rec { export SETUPTOOLS_SCM_PRETEND_VERSION="${version}" ''; - # Tests appear to run fine (Ran 22 tests in 4.076s) with setuptoolsCheckPhase - # but crash with pytestCheckHook checkInputs = [ + pytestCheckHook asttokens + littleutils ]; pythonImportsCheck = [ |
