python3Packages.astropy-healpix: 1.0.0 -> 1.0.1

This commit is contained in:
Martin Weinelt
2023-12-20 20:17:40 +01:00
parent e154220693
commit eb2d2e4de1
@@ -6,6 +6,7 @@
, numpy
, astropy
, astropy-extension-helpers
, setuptools
, setuptools-scm
, pytestCheckHook
, pytest-doctestplus
@@ -14,13 +15,13 @@
buildPythonPackage rec {
pname = "astropy-healpix";
version = "1.0.0";
format = "setuptools";
version = "1.0.1";
pyproject = true;
src = fetchPypi {
inherit version;
pname = lib.replaceStrings ["-"] ["_"] pname;
hash = "sha256-9ILvYqEOaGMD84xm8I3xe53e5a2CIZwjVx7oDXar7qM=";
hash = "sha256-74k4vfcpdXw4CowXNHlNc3StAOB2f8Si+mOma+8SYkI=";
};
patches = [
@@ -35,6 +36,7 @@ buildPythonPackage rec {
nativeBuildInputs = [
astropy-extension-helpers
setuptools
setuptools-scm
];