3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.google-cloud-iam-logging: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-03-08 11:01:37 +01:00 committed by GitHub
parent de5c2a2f1a
commit 644b783ac1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,15 +7,19 @@
, proto-plus , proto-plus
, pytest-asyncio , pytest-asyncio
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "google-cloud-iam-logging"; pname = "google-cloud-iam-logging";
version = "1.0.1"; version = "1.0.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-ZmoBaY0OM2pQcqasGCJQIeN6Rmbo4xlYK7LtH7SecgY="; hash = "sha256-ZmoBaY0OM2pQcqasGCJQIeN6Rmbo4xlYK7LtH7SecgY=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [