2018-10-26 15:57:03 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, six
|
|
|
|
, pytest
|
|
|
|
, hypothesis
|
2019-01-08 05:02:12 +00:00
|
|
|
, pytestrunner
|
2018-10-26 15:57:03 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyrsistent";
|
2019-07-02 16:15:14 +01:00
|
|
|
version = "0.15.2";
|
2018-10-26 15:57:03 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-07-02 16:15:14 +01:00
|
|
|
sha256 = "0fjwnxg7q1b02j7hk1wqm5xdn7wck9j2g3ggkkizab6l77kjws8n";
|
2018-10-26 15:57:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
2019-01-08 05:02:12 +00:00
|
|
|
checkInputs = [ pytestrunner pytest hypothesis ];
|
|
|
|
|
2018-10-26 15:57:03 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/tobgu/pyrsistent/;
|
|
|
|
description = "Persistent/Functional/Immutable data structures";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ desiderius ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|