mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
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:
parent
2c76b8f575
commit
a65e052e4c
1 changed files with 6 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, setuptools_scm, pathpy, nbconvert
|
||||
, pytest }:
|
||||
|
||||
|
@ -11,11 +11,10 @@ buildPythonPackage rec {
|
|||
sha256 = "b8a9bdcfa4b705d72b55b218658bc9403c157db7b57a14158253c98d03ab713d";
|
||||
};
|
||||
|
||||
# Python 3.7 compatibility
|
||||
# See https://github.com/zimmermanncode/zetup/pull/1
|
||||
# Python 3.8 compatibility
|
||||
postPatch = ''
|
||||
substituteInPlace zetup/zetup_config.py \
|
||||
--replace "'3.6']" "'3.6', '3.7']"
|
||||
--replace "'3.7']" "'3.7', '3.8']"
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
|
@ -25,11 +24,9 @@ buildPythonPackage rec {
|
|||
checkInputs = [ pytest pathpy nbconvert ];
|
||||
propagatedBuildInputs = [ setuptools_scm ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = ''
|
||||
Zimmermann's Extensible Tools for Unified Project setups
|
||||
'';
|
||||
homepage = https://github.com/zimmermanncode/zetup;
|
||||
meta = with lib; {
|
||||
description = "Zimmermann's Extensible Tools for Unified Project setups";
|
||||
homepage = "https://github.com/zimmermanncode/zetup";
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue