nixpkgs/pkgs/development/python-modules/zodb/default.nix
2024-03-18 22:52:12 +01:00

60 lines
1.1 KiB
Nix

{ lib
, fetchPypi
, buildPythonPackage
, python
, zope-testrunner
, transaction
, six
, zope-interface
, zodbpickle
, zconfig
, persistent
, zc-lockfile
, btrees
, manuel
}:
buildPythonPackage rec {
pname = "zodb";
version = "5.8.1";
src = fetchPypi {
pname = "ZODB";
inherit version;
hash = "sha256-xsc6vTZg1gb/wfIfl97xS1K0b0pwLsnm7kSabiviZN8=";
};
# remove broken test
postPatch = ''
rm -vf src/ZODB/tests/testdocumentation.py
'';
propagatedBuildInputs = [
transaction
six
zope-interface
zodbpickle
zconfig
persistent
zc-lockfile
btrees
];
nativeCheckInputs = [
manuel
zope-testrunner
];
checkPhase = ''
${python.interpreter} -m zope.testrunner --test-path=src []
'';
meta = with lib; {
description = "Zope Object Database: object database and persistence";
homepage = "https://zodb-docs.readthedocs.io/";
changelog = "https://github.com/zopefoundation/ZODB/blob/${version}/CHANGES.rst";
license = licenses.zpl21;
maintainers = with maintainers; [ goibhniu ];
};
}