1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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 {
pname = "jupyterhub-systemdspawner";
version = "0.15.0";
version = "0.15";
src = fetchFromGitHub {
owner = "jupyterhub";
repo = "systemdspawner";
# Corresponds to 0.15.0
# Upstream didn't tag the latest release:
# https://github.com/jupyterhub/systemdspawner/issues/89
rev = "7d7cf42db76d9cfa5a4bc42fff14943877ac570b";
rev = "v${version}";
sha256 = "sha256-EUCA+CKCeYr+cLVrqTqe3Q32JkbqeALL6tfOnlVHk8Q=";
};