3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.google-cloud-secret-manager: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-04-05 21:12:32 +02:00 committed by GitHub
parent 1bff2d6c45
commit f0969c2be9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,15 +8,19 @@
, proto-plus , proto-plus
, pytestCheckHook , pytestCheckHook
, pytest-asyncio , pytest-asyncio
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "google-cloud-secret-manager"; pname = "google-cloud-secret-manager";
version = "2.10.0"; version = "2.10.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-nQfdej2SveO0Qxam57ZRAyTQ0NnGoyb4nx2YFnqtAhI="; hash = "sha256-nQfdej2SveO0Qxam57ZRAyTQ0NnGoyb4nx2YFnqtAhI=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [