python3Packages.jupyterhub-systemdspawner: use git tag from upstream

This commit is contained in:
Kerstin Humm 2021-12-01 13:13:52 +01:00
parent 3070c350e6
commit e405114a4e
No known key found for this signature in database
GPG key ID: 40293358C7B9326B

View file

@ -8,15 +8,12 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "jupyterhub-systemdspawner"; pname = "jupyterhub-systemdspawner";
version = "0.15.0"; version = "0.15";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jupyterhub"; owner = "jupyterhub";
repo = "systemdspawner"; repo = "systemdspawner";
# Corresponds to 0.15.0 rev = "v${version}";
# Upstream didn't tag the latest release:
# https://github.com/jupyterhub/systemdspawner/issues/89
rev = "7d7cf42db76d9cfa5a4bc42fff14943877ac570b";
sha256 = "sha256-EUCA+CKCeYr+cLVrqTqe3Q32JkbqeALL6tfOnlVHk8Q="; sha256 = "sha256-EUCA+CKCeYr+cLVrqTqe3Q32JkbqeALL6tfOnlVHk8Q=";
}; };