python311Packages.pyvex: 9.2.93 -> 9.2.96

This commit is contained in:
Fabian Affolter 2024-03-28 23:25:36 +01:00
parent e4daa76528
commit b3922bf9a8
1 changed files with 2 additions and 6 deletions

View File

@ -1,11 +1,9 @@
{ lib
, stdenv
, archinfo
, bitstring
, buildPythonPackage
, cffi
, fetchPypi
, future
, pycparser
, pythonOlder
, setuptools
@ -13,14 +11,14 @@
buildPythonPackage rec {
pname = "pyvex";
version = "9.2.93";
version = "9.2.96";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchPypi {
inherit pname version;
hash = "sha256-44F1EE8TRsmYRnMNQakxIaFdAuZKpHIDsq+M1cK/pQk=";
hash = "sha256-60aOAm7eUlYHTCqIILz4l0oF1jvttDZUs4jSrF5+IJI=";
};
build-system = [
@ -28,10 +26,8 @@ buildPythonPackage rec {
];
dependencies = [
archinfo
bitstring
cffi
future
pycparser
];