sourcehut: python37 -> python38

This commit is contained in:
Edmund Wu 2020-09-05 19:20:30 -04:00 committed by Jon
parent db5c7cc5ee
commit 496cbef3d1

View file

@ -1,4 +1,4 @@
{ python37, openssl
{ python38, openssl
, callPackage, recurseIntoAttrs }:
# To expose the *srht modules, they have to be a python module so we use `buildPythonModule`
@ -8,7 +8,7 @@
let
fetchNodeModules = callPackage ./fetchNodeModules.nix { };
python = python37.override {
python = python38.override {
packageOverrides = self: super: {
srht = self.callPackage ./core.nix { inherit fetchNodeModules; };