10 buildPythonPackage rec {
17 inherit pname version;
18 sha256 = "sha256-1NYfi5k6clW6cU3zrKUnAPgSUon4T3BM+AkWUXxG65Y=";
21 propagatedBuildInputs = [ six ];
23 checkInputs = [ pytestCheckHook hypothesis ];
26 substituteInPlace setup.py \
27 --replace 'pytest<5' 'pytest' \
28 --replace 'hypothesis<5' 'hypothesis'
31 pythonImportsCheck = [ "pyrsistent" ];
34 homepage = "https://github.com/tobgu/pyrsistent/";
35 description = "Persistent/Functional/Immutable data structures";
36 license = licenses.mit;
37 maintainers = with maintainers; [ desiderius ];