1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, six
5, pytest_4
6, hypothesis
7, pytestrunner
8}:
9
10buildPythonPackage rec {
11 pname = "pyrsistent";
12 version = "0.15.4";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "0cv5xvhfhlj88pb0ghdwivkfcmgi6503qjwxx4r6n06nd6hpzd1l";
17 };
18
19 propagatedBuildInputs = [ six ];
20
21 checkInputs = [ pytestrunner pytest_4 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}