10 buildPythonPackage rec {
17 inherit pname version;
18 hash = "sha256-GimUdzcGu7SZXDGpe8lPFBgxSSO9EEjG2WSDcEA3ZEA=";
21 propagatedBuildInputs = [ six ];
23 nativeCheckInputs = [ 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 ];