nixpkgs/pkgs/development/python-modules/google-cloud-testutils/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

43 lines
865 B
Nix

{ lib
, buildPythonPackage
, click
, fetchPypi
, google-auth
, packaging
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-testutils";
version = "1.3.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-bRjvNNmvsBy0sR4C0DoC/n7A9ez6AfXUJrXZiHKkz0g=";
};
propagatedBuildInputs = [
click
google-auth
packaging
];
# does not contain tests
doCheck = false;
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 ];
};
}