steck: relax click constraint
This commit is contained in:
parent
4d6b6f7cba
commit
64e0603499
1 changed files with 10 additions and 1 deletions
|
@ -1,4 +1,8 @@
|
|||
{ lib, pkgs, python3Packages, nixosTests }:
|
||||
{ lib
|
||||
, pkgs
|
||||
, python3Packages
|
||||
, nixosTests
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "steck";
|
||||
|
@ -9,6 +13,11 @@ python3Packages.buildPythonApplication rec {
|
|||
sha256 = "1a3l427ibwck9zzzy1sp10hmjgminya08i4r9j4559qzy7lxghs1";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace 'click>=7.0,<8.0' 'click'
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
pkgs.git
|
||||
appdirs
|
||||
|
|
Loading…
Reference in a new issue