python3Packages.pyvo: 1.4 -> 1.4.2

This commit is contained in:
Martin Weinelt 2023-09-15 14:06:58 +02:00
parent 5f9c9bb64a
commit 408198ed92

View file

@ -14,23 +14,15 @@
buildPythonPackage rec {
pname = "pyvo";
version = "1.4";
version = "1.4.2";
disabled = pythonOlder "3.8"; # according to setup.cfg
src = fetchPypi {
inherit pname version;
hash = "sha256-R2ttLoFd6Ic0KZl49dzN5NtWAqPpXRaeki6X8CRGsCw=";
hash = "sha256-Zv4piGWs/XJbxfGHUHctfxuImbjluxd1chUgvtV9lcs=";
};
patches = [
# Backport Python 3.11 support.
(fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/astropy/pyvo/pull/385.patch";
sha256 = "IHf3W9fIT8XFvyM41PUiJkt1j+B3RkX3TS4FOnRUMDk=";
})
];
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [