1{ lib
2, buildPythonPackage
3, pythonOlder
4, fetchPypi
5}:
6
7buildPythonPackage rec {
8 pname = "zodbpickle";
9 version = "3.1";
10 format = "setuptools";
11
12 disabled = pythonOlder "3.7";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-uewy5wbHuAi3mlOnrZZgkRfpQoN3K0AO52VSEHqrzBE=";
17 };
18
19 # fails..
20 doCheck = false;
21
22 pythonImportsCheck = [
23 "zodbpickle"
24 ];
25
26 meta = with lib; {
27 description = "Fork of Python's pickle module to work with ZODB";
28 homepage = "https://github.com/zopefoundation/zodbpickle";
29 changelog = "https://github.com/zopefoundation/zodbpickle/blob/${version}/CHANGES.rst";
30 license = licenses.asl20;
31 maintainers = with maintainers; [ ];
32 };
33}