python310Packages.astropy-healpix 0 -> 1 attrpath: python310Packages.astropy-healpix Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [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] Going to be running update for following packages: - python3.10-astropy-healpix-1.0.0 Press Enter key to continue... Running update for: - python3.10-astropy-healpix-1.0.0: UPDATING ... - python3.10-astropy-healpix-1.0.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/astropy-healpix/default.nix b/pkgs/development/python-modules/astropy-healpix/default.nix index 6944ee4d8683..e77e521ea498 100644 --- a/pkgs/development/python-modules/astropy-healpix/default.nix +++ b/pkgs/development/python-modules/astropy-healpix/default.nix @@ -14,13 +14,13 @@ buildPythonPackage rec { pname = "astropy-healpix"; - version = "1.0.0"; + version = "1.0.2"; format = "setuptools"; src = fetchPypi { inherit version; pname = lib.replaceStrings ["-"] ["_"] pname; - hash = "sha256-9ILvYqEOaGMD84xm8I3xe53e5a2CIZwjVx7oDXar7qM="; + hash = "sha256-BW+m7ZOWvtx3HTdNh3zeg9lGCj9ip4/gXb+boDlAMjo="; }; patches = [ No auto update branch exists Old version 1.0.0" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchPypi , fetchpatch , numpy , astropy , astropy-extension-helpers , setuptools , setuptools-scm , pytestCheckHook , pytest-doctestplus , hypothesis }: buildPythonPackage rec { pname = "astropy-healpix"; version = "1.0.1"; pyproject = true; src = fetchPypi { inherit version; pname = lib.replaceStrings ["-"] ["_"] pname; hash = "sha256-74k4vfcpdXw4CowXNHlNc3StAOB2f8Si+mOma+8SYkI="; }; patches = [ # remove on next udpate. make Numpy loop function args const correct. # https://github.com/astropy/astropy-healpix/pull/199 (fetchpatch { name = "numpy-const-args-match.patch"; url = "https://github.com/astropy/astropy-healpix/commit/ccf6d9ea4be131f56646adbd7bc482bfcd84f21c.patch"; hash = "sha256-fpDxTbs3sHJSb4mnveorM+wlseXbZu1biGyBTNC9ZUo="; }) ]; nativeBuildInputs = [ astropy-extension-helpers setuptools setuptools-scm ]; propagatedBuildInputs = [ numpy astropy ]; nativeCheckInputs = [ pytestCheckHook pytest-doctestplus hypothesis ]; disabledTests = lib.optional (!stdenv.hostPlatform.isDarwin) "test_interpolate_bilinear_skycoord"; # tests must be run in the build directory preCheck = '' cd build/lib* ''; meta = with lib; { description = "BSD-licensed HEALPix for Astropy"; homepage = "https://github.com/astropy/astropy-healpix"; license = licenses.bsd3; maintainers = [ maintainers.smaret ]; }; }