mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 12:44:20 +00:00
python3Packages.chalice: fix python3 deps
This commit is contained in:
parent
09f4d3d493
commit
5baf8f95f9
@ -1,6 +1,7 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
, attrs
|
, attrs
|
||||||
, botocore
|
, botocore
|
||||||
, click
|
, click
|
||||||
@ -21,11 +22,11 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "chalice";
|
pname = "chalice";
|
||||||
version = "1.17.0";
|
version = "1.18.1";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "b1ab4197628f4725ac50479aefe61698ea4a5d83ef88bb88978023cdf840a9a2";
|
sha256 = "0zb4xk9b553pnfzh8s909cixfdplqnc3nda0fjwjrryi2nxjxd6a";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ watchdog pytest hypothesis mock ];
|
checkInputs = [ watchdog pytest hypothesis mock ];
|
||||||
@ -41,6 +42,7 @@ buildPythonPackage rec {
|
|||||||
setuptools
|
setuptools
|
||||||
six
|
six
|
||||||
wheel
|
wheel
|
||||||
|
] ++ lib.optionals (pythonOlder "3.5") [
|
||||||
typing
|
typing
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user