Merge pull request #258142 from r-ryantm/auto-update/python310Packages.pony

python310Packages.pony: 0.7.16 -> 0.7.17
This commit is contained in:
OTABI Tomoya 2023-10-06 21:44:33 +09:00 committed by GitHub
commit 622b51dbe4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,16 +8,16 @@
buildPythonPackage rec {
pname = "pony";
version = "0.7.16";
version = "0.7.17";
format = "setuptools";
disabled = pythonOlder "3.7" || pythonAtLeast "3.11";
disabled = pythonOlder "3.8" || pythonAtLeast "3.12";
src = fetchFromGitHub {
owner = "ponyorm";
repo = pname;
rev = "v${version}";
hash = "sha256-yATIsX2nKsW5DBwg9/LznQqf+XPY3q46WZut18Sr0v0=";
rev = "refs/tags/v${version}";
hash = "sha256-wBqw+YHKlxYplgsYL1pbkusHyPfCaVPcH/Yku6WDYbE=";
};
nativeCheckInputs = [
@ -26,7 +26,6 @@ buildPythonPackage rec {
disabledTests = [
# Tests are outdated
"test_exception_msg"
"test_method"
];