1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, six
5, pytest
6, hypothesis
7, pytestrunner
8}:
9
10buildPythonPackage rec {
11 pname = "pyrsistent";
12 version = "0.14.11";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "3ca82748918eb65e2d89f222b702277099aca77e34843c5eb9d52451173970e2";
17 };
18
19 propagatedBuildInputs = [ six ];
20
21 checkInputs = [ pytestrunner pytest hypothesis ];
22
23 meta = with stdenv.lib; {
24 homepage = https://github.com/tobgu/pyrsistent/;
25 description = "Persistent/Functional/Immutable data structures";
26 license = licenses.mit;
27 maintainers = with maintainers; [ desiderius ];
28 };
29
30}