11 buildPythonPackage rec {
15 disabled = pythonOlder "3.5";
17 src = fetchFromGitHub {
20 rev = "refs/tags/v${version}";
21 hash = "sha256-dcL/i5+scmdXh7lfE8+32w9PdHWf+mkunJL1vpJ5+Co=";
25 substituteInPlace pyproject.toml \
26 --replace "pytest >= 5.0, < 7.0" "pytest >= 5.0"
33 propagatedBuildInputs = [
42 pythonImportsCheck = [ "pytest_cid" ];
45 homepage = "https://github.com/ntninja/pytest-cid";
46 description = "A simple wrapper around py-cid for easily writing tests involving CIDs in datastructures";
47 license = licenses.mpl20;
48 maintainers = with maintainers; [ Luflosi ];