python310Packages.google-cloud-testutils: add changelog to meta

This commit is contained in:
Fabian Affolter
2022-12-28 18:22:57 +01:00
parent ba46bd0b62
commit 6a7e45bcee
@@ -1,4 +1,11 @@
{ lib, buildPythonPackage, fetchPypi, click, google-auth, packaging, six }:
{ lib
, buildPythonPackage
, fetchPypi
, click
, google-auth
, packaging
, six
}:
buildPythonPackage rec {
pname = "google-cloud-testutils";
@@ -14,11 +21,14 @@ buildPythonPackage rec {
# does not contain tests
doCheck = false;
pythonImportsCheck = [ "test_utils" ];
pythonImportsCheck = [
"test_utils"
];
meta = with lib; {
description = "System test utilities for google-cloud-python";
homepage = "https://github.com/googleapis/python-test-utils";
changelog ="https://github.com/googleapis/python-test-utils/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};