python3Packages.pyvex: 9.0.5739 -> 9.0.5903

This commit is contained in:
Fabian Affolter 2021-02-24 23:50:38 +01:00
parent 1b608cb700
commit ccd6cd97c9

View File

@ -1,4 +1,5 @@
{ lib { lib
, stdenv
, archinfo , archinfo
, bitstring , bitstring
, fetchPypi , fetchPypi
@ -10,11 +11,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyvex"; pname = "pyvex";
version = "9.0.5739"; version = "9.0.5903";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1jwxxw2kw7wkz7kh8m8vbavzw6m5k6xph7mazfn3k2qbsshh3lk3"; sha256 = "sha256-qhLlRlmb48zhjX2u9w6TVVv2gb0E9kSapabiv+u4J2s=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -35,5 +36,7 @@ buildPythonPackage rec {
homepage = "https://github.com/angr/pyvex"; homepage = "https://github.com/angr/pyvex";
license = with licenses; [ bsd2 gpl3Plus lgpl3Plus ]; license = with licenses; [ bsd2 gpl3Plus lgpl3Plus ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
# ERROR: pyvex-X-py3-none-manylinux1_aarch64.whl is not a supported wheel on this platform.
broken = stdenv.isAarch64;
}; };
} }