Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / zodbpickle / default.nix
blob6fd93b9226211b1523c19a06d458cc2e2e924caa
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 }:
7 buildPythonPackage rec {
8   pname = "zodbpickle";
9   version = "3.3";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-dcF5Kse9W89JUFggYqw2hOMiqhOrmEIOO/7EWCJzo2g=";
17   };
19   # fails..
20   doCheck = false;
22   pythonImportsCheck = [
23     "zodbpickle"
24   ];
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   };