python312Packages.mongoengine 0.27.0 -> 0.28.2 https://github.com/MongoEngine/mongoengine/releases attrpath: python312Packages.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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/2z69a7psam6h1xgk62mi9frjv5xz7djz-packages.json.drv building '/nix/store/2z69a7psam6h1xgk62mi9frjv5xz7djz-packages.json.drv'... Going to be running update for following packages: - python3.12-mongoengine-0.27.0 Press Enter key to continue... Running update for: - python3.12-mongoengine-0.27.0: UPDATING ... - python3.12-mongoengine-0.27.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/mongoengine/default.nix b/pkgs/development/python-modules/mongoengine/default.nix index 3e63330d5ac2..644f87521a2c 100644 --- a/pkgs/development/python-modules/mongoengine/default.nix +++ b/pkgs/development/python-modules/mongoengine/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "mongoengine"; - version = "0.27.0"; + version = "0.28.2"; format = "setuptools"; disabled = isPy27; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "MongoEngine"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-UCd7RpsSNDKh3vgVRYrFYWYVLQuK7WI0n/Moukhq5dM="; + hash = "sha256-5wcviRqUTOKqaeusHxS4Er3LD1BpTMW02Tip3d4zAPM="; }; propagatedBuildInputs = [ No auto update branch exists Old version 0.27.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , pymongo , isPy27 , six , blinker , nose , pillow , coverage }: buildPythonPackage rec { pname = "mongoengine"; version = "0.28.2"; format = "setuptools"; disabled = isPy27; src = fetchFromGitHub { owner = "MongoEngine"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-5wcviRqUTOKqaeusHxS4Er3LD1BpTMW02Tip3d4zAPM="; }; propagatedBuildInputs = [ pymongo six ]; nativeCheckInputs = [ 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 = [ ]; }; }