python311Packages.plyfile 1.0.1 -> 1.0.2 https://repology.org/project/python:plyfile/versions attrpath: python311Packages.plyfile 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/6armsfyavjsi57zkcakcfhm8ah5c2c1x-packages.json.drv building '/nix/store/6armsfyavjsi57zkcakcfhm8ah5c2c1x-packages.json.drv'... Going to be running update for following packages: - python3.11-plyfile-1.0.1 Press Enter key to continue... Running update for: - python3.11-plyfile-1.0.1: UPDATING ... - python3.11-plyfile-1.0.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/plyfile/default.nix b/pkgs/development/python-modules/plyfile/default.nix index 050d6ef56f6b..6f51b7b6a4ff 100644 --- a/pkgs/development/python-modules/plyfile/default.nix +++ b/pkgs/development/python-modules/plyfile/default.nix @@ -3,12 +3,12 @@ buildPythonPackage rec { pname = "plyfile"; - version = "1.0.1"; + version = "1.0.2"; format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "sha256-TOrt8e2Ss6Jrdm/IxWzaG5sjkOwpmxbe3i5f1FCXJho="; + sha256 = "sha256-RGaRz8ikU7igxsOUxCp6KCYtqU7C0S+k0wmY946LExM="; }; propagatedBuildInputs = [ numpy ]; No auto update branch exists Old version 1.0.1" not present in staging derivation file with contents: { lib , fetchFromGitHub , buildPythonPackage # build-system , pdm-pep517 # dependencies , numpy # tests , pytestCheckHook }: buildPythonPackage rec { pname = "plyfile"; version = "1.0.2"; pyproject = true; src = fetchFromGitHub { owner = "dranjan"; repo = "python-plyfile"; rev = "refs/tags/v${version}"; hash = "sha256-HlyqljfjuaZoG5f2cfDQj+7KS0en7pW2PPEnpvH8U+E="; }; nativeBuildInputs = [ pdm-pep517 ]; propagatedBuildInputs = [ numpy ]; nativeCheckInputs = [ pytestCheckHook ]; meta = with lib; { description = "NumPy-based text/binary PLY file reader/writer for Python"; homepage = "https://github.com/dranjan/python-plyfile"; maintainers = with maintainers; [ abbradar ]; }; }