python3Packages.trie: 3.0.1 -> 3.1.0

Changed files
+5 -2
pkgs
development
python-modules
+5 -2
pkgs/development/python-modules/trie/default.nix
···
hypothesis,
pytestCheckHook,
pytest-xdist,
}:
buildPythonPackage rec {
pname = "trie";
-
version = "3.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "ethereum";
repo = "py-trie";
tag = "v${version}";
-
hash = "sha256-kG/5ijckiEOfB5y1c3Yqudqnb1MDbPD25YZZM+H13Lw=";
};
build-system = [ setuptools ];
···
hypothesis
pytestCheckHook
pytest-xdist
]
++ eth-hash.optional-dependencies.pycryptodome;
···
"test_fixtures_exist"
"test_bin_trie_update_value"
"test_branch_updates"
];
disabledTestPaths = [ "tests/core/test_iter.py" ];
···
hypothesis,
pytestCheckHook,
pytest-xdist,
+
pydantic,
}:
buildPythonPackage rec {
pname = "trie";
+
version = "3.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ethereum";
repo = "py-trie";
tag = "v${version}";
+
hash = "sha256-QDywlAyFbQGgkATVifdixlnob4Tmsvr/VZ1rafzWKrU=";
};
build-system = [ setuptools ];
···
hypothesis
pytestCheckHook
pytest-xdist
+
pydantic
]
++ eth-hash.optional-dependencies.pycryptodome;
···
"test_fixtures_exist"
"test_bin_trie_update_value"
"test_branch_updates"
+
"test_install_local_wheel"
];
disabledTestPaths = [ "tests/core/test_iter.py" ];