pythonPackages.capstone: 3.0.4 -> 3.0.5

* Tested the package build
    - *NOT* tested the packages relying on capstone...
  * Added `setupPyBuildFlags` to avoid the error
  "ERROR: capstone-3.0.5.post1-py3-none-manylinux1_x86_64.whl is not a
  supported wheel on this platform."
This commit is contained in:
Pamplemousse 2019-07-16 10:15:39 -07:00 committed by Frederik Rietdijk
parent 7055dee84d
commit 4edfccc22a

View file

@ -6,11 +6,15 @@
buildPythonPackage rec {
pname = "capstone";
version = "3.0.4";
version = "3.0.5.post1";
setupPyBuildFlags = [
"--plat-name x86_64-linux"
];
src = fetchPypi {
inherit pname version;
sha256 = "945d3b8c3646a1c3914824c416439e2cf2df8969dd722c8979cdcc23b40ad225";
sha256 = "3c0f73db9f8392f7048c8a244809f154d7c39f354e2167f6c477630aa517ed04";
};
patches = [