Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 25 lines 674 B view raw
1{ lib, buildPythonPackage, fetchPypi, click, google-auth, six }: 2 3buildPythonPackage rec { 4 pname = "google-cloud-testutils"; 5 version = "0.2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "a23be7cc23bccb1ae6debb74a47dc5b51858b6322fcf034ca92fe7a4acb896f3"; 10 }; 11 12 propagatedBuildInputs = [ click google-auth six ]; 13 14 # does not contain tests 15 doCheck = false; 16 17 pythonImportsCheck = [ "test_utils" ]; 18 19 meta = with lib; { 20 description = "System test utilities for google-cloud-python"; 21 homepage = "https://github.com/googleapis/python-test-utils"; 22 license = licenses.asl20; 23 maintainers = with maintainers; [ SuperSandro2000 ]; 24 }; 25}