pythonPackages.pyatmo: 2.3.2 requires requests

This commit is contained in:
Pierre Bourdon 2019-11-04 05:26:06 +01:00 committed by Frederik Rietdijk
parent a2f7fc9a5c
commit eb2aa009a3

View File

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, requests
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -12,6 +13,8 @@ buildPythonPackage rec {
sha256 = "2c76740e5adbf8b14d8f41d4f84ce23c0e8e738b18b926dc60858c35bf2fa8f2"; sha256 = "2c76740e5adbf8b14d8f41d4f84ce23c0e8e738b18b926dc60858c35bf2fa8f2";
}; };
propagatedBuildInputs = [ requests ];
# Upstream provides no unit tests. # Upstream provides no unit tests.
doCheck = false; doCheck = false;