python38Packages.zetup: fix build

Currently fails to build on python 3.8 due to an overly restrictive version bound.

ZHF: #80379

CC @NixOS/nixos-release-managers
This commit is contained in:
Benjamin Hipple 2020-03-27 22:59:43 -04:00
parent 2c76b8f575
commit a65e052e4c

View File

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi { lib, buildPythonPackage, fetchPypi
, setuptools_scm, pathpy, nbconvert , setuptools_scm, pathpy, nbconvert
, pytest }: , pytest }:
@ -11,11 +11,10 @@ buildPythonPackage rec {
sha256 = "b8a9bdcfa4b705d72b55b218658bc9403c157db7b57a14158253c98d03ab713d"; sha256 = "b8a9bdcfa4b705d72b55b218658bc9403c157db7b57a14158253c98d03ab713d";
}; };
# Python 3.7 compatibility # Python 3.8 compatibility
# See https://github.com/zimmermanncode/zetup/pull/1
postPatch = '' postPatch = ''
substituteInPlace zetup/zetup_config.py \ substituteInPlace zetup/zetup_config.py \
--replace "'3.6']" "'3.6', '3.7']" --replace "'3.7']" "'3.7', '3.8']"
''; '';
checkPhase = '' checkPhase = ''
@ -25,11 +24,9 @@ buildPythonPackage rec {
checkInputs = [ pytest pathpy nbconvert ]; checkInputs = [ pytest pathpy nbconvert ];
propagatedBuildInputs = [ setuptools_scm ]; propagatedBuildInputs = [ setuptools_scm ];
meta = with stdenv.lib; { meta = with lib; {
description = '' description = "Zimmermann's Extensible Tools for Unified Project setups";
Zimmermann's Extensible Tools for Unified Project setups homepage = "https://github.com/zimmermanncode/zetup";
'';
homepage = https://github.com/zimmermanncode/zetup;
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.unix; platforms = platforms.unix;
}; };