3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #221149 from marsam/update-python-eve

python310Packages.eve: 2.0.4 -> 2.1.0
This commit is contained in:
Fabian Affolter 2023-03-14 13:17:55 +01:00 committed by GitHub
commit 7943ea66b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,13 +12,13 @@
buildPythonPackage rec {
pname = "eve";
version = "2.0.4";
version = "2.1.0";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "Eve";
sha256 = "sha256-RZ6dwekCKA+PomBp2Ht7/0elOLLUs/sO0KgdxxTOjtc=";
sha256 = "sha256-NobIzu+7+NI7M4NRQKjrhye3v6YGMeGnbDRB39b3Dy8=";
};
disabled = pythonOlder "3.7";
@ -34,11 +34,12 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace setup.py \
--replace "flask<2.2" "flask" \
--replace "events>=0.3,<0.4" "events>=0.3"
'';
pythonImportsCheck = [ "eve" ];
pythonImportsCheck = [
"eve"
];
# tests call a running mongodb instance
doCheck = false;