mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 01:03:25 +00:00
python310Packages.claripy: adjust inputs
This commit is contained in:
parent
56f6969654
commit
39a0eed453
@ -5,11 +5,9 @@
|
|||||||
, decorator
|
, decorator
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, future
|
, future
|
||||||
, nose
|
|
||||||
, pysmt
|
, pysmt
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, six
|
|
||||||
, z3
|
, z3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -23,7 +21,7 @@ buildPythonPackage rec {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "angr";
|
owner = "angr";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-ItWL2DGoMkOMOMsTTfal8W9DZCmXMuZs0cZbYESlFU4=";
|
hash = "sha256-ItWL2DGoMkOMOMsTTfal8W9DZCmXMuZs0cZbYESlFU4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -40,15 +38,13 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
nose
|
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
six
|
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
# Use upstream z3 implementation
|
# Use upstream z3 implementation
|
||||||
substituteInPlace setup.cfg \
|
substituteInPlace setup.cfg \
|
||||||
--replace "z3-solver == 4.10.2.0" ""
|
--replace "z3-solver==4.10.2.0" ""
|
||||||
'';
|
'';
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
|
Loading…
Reference in New Issue
Block a user