10 buildPythonPackage rec {
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 # test vectors require git submodule
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 fetchSubmodules = true;
23 hash = "sha256-pCm3jd/dVqO/uIvT5N/w5yoUWU6ni62Pl2A862e+qSk=";
27 substituteInPlace setup.py \
28 --replace "'pytest-runner'," ""
31 propagatedBuildInputs = [
41 # ValueError: Exceeds the limit (4300) for integer string conversion
45 pythonImportsCheck = [
50 description = "Python implementation of Amazon Ion";
51 homepage = "https://github.com/amzn/ion-python";
52 sourceProvenance = with sourceTypes; [
56 license = licenses.asl20;
57 maintainers = with maintainers; [ terlar ];