python310Packages.mongoengine 0 -> 1 attrpath: python310Packages.mongoengine Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/n51cm4ahg0rpm4wmll11vhlgk818ahdk-packages.json.drv building '/nix/store/n51cm4ahg0rpm4wmll11vhlgk818ahdk-packages.json.drv'... Going to be running update for following packages: - python3.10-mongoengine-0.24.1 Press Enter key to continue... Running update for: - python3.10-mongoengine-0.24.1: UPDATING ... - python3.10-mongoengine-0.24.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/mongoengine/default.nix b/pkgs/development/python-modules/mongoengine/default.nix index ff91a63d792..3ba9c9dea36 100644 --- a/pkgs/development/python-modules/mongoengine/default.nix +++ b/pkgs/development/python-modules/mongoengine/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "mongoengine"; - version = "0.24.1"; + version = "0.25.0"; disabled = isPy27; src = fetchFromGitHub { owner = "MongoEngine"; repo = pname; rev = "refs/tags/v${version}"; - sha256 = "sha256-KmCk4YTkwpWePTOOFyp4hGIcxpy/rrfAAC1/Xes/IYk="; + sha256 = "sha256-2UPjyKJGiW8UfWgMu8WKZJ5l+p4vTR57GxMFC5amb4A="; }; propagatedBuildInputs = [ No auto update branch exists Old version 0.24.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , pymongo , isPy27 , six , blinker , nose , pillow , coverage }: buildPythonPackage rec { pname = "mongoengine"; version = "0.25.0"; disabled = isPy27; src = fetchFromGitHub { owner = "MongoEngine"; repo = pname; rev = "refs/tags/v${version}"; sha256 = "sha256-2UPjyKJGiW8UfWgMu8WKZJ5l+p4vTR57GxMFC5amb4A="; }; propagatedBuildInputs = [ pymongo six ]; checkInputs = [ nose pillow coverage blinker ]; postPatch = '' substituteInPlace setup.py \ --replace "coverage==4.2" "coverage" \ --replace "pymongo>=3.4,<=4.0" "pymongo" ''; # tests require mongodb running in background doCheck = false; pythonImportsCheck = [ "mongoengine" ]; meta = with lib; { description = "MongoEngine is a Python Object-Document Mapper for working with MongoDB"; homepage = "http://mongoengine.org/"; license = licenses.mit; maintainers = [ maintainers.costrouc ]; }; }