python310Packages.zodbpickle: add meta
- add pythonImportsCheck
This commit is contained in:
parent
ae12bebc29
commit
8a4a3622cf
1 changed files with 17 additions and 6 deletions
|
@ -1,22 +1,33 @@
|
|||
{ buildPythonPackage
|
||||
, isPyPy
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zodbpickle";
|
||||
version = "2.6";
|
||||
disabled = isPyPy; # https://github.com/zopefoundation/zodbpickle/issues/10
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-BZePwk/5PzSQRa6hH6OtHvqA6rGcq2JR6sdBfGMRodI=";
|
||||
hash = "sha256-BZePwk/5PzSQRa6hH6OtHvqA6rGcq2JR6sdBfGMRodI=";
|
||||
};
|
||||
|
||||
# fails..
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = "https://pypi.python.org/pypi/zodbpickle";
|
||||
pythonImportsCheck = [
|
||||
"zodbpickle"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fork of Python's pickle module to work with ZODB";
|
||||
homepage = "https://github.com/zopefoundation/zodbpickle";
|
||||
changelog = "https://github.com/zopefoundation/zodbpickle/blob/${version}/CHANGES.rst";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue