about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/google-cloud-org-policy/default.nix
blob: 39cc0dc9c24b857b3bc0d206f0a328d2ece69304 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, buildPythonPackage, fetchPypi, pythonOlder, google_api_core }:

buildPythonPackage rec {
  pname = "google-cloud-org-policy";
  version = "0.1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0ncgcnbvmgqph54yh2pjx2hh82gnkhsrw5yirp4wlf7jclh6j9xh";
  };

  disabled = pythonOlder "3.5";

  propagatedBuildInputs = [ google_api_core ];

  # No tests in repo
  doCheck = false;

  pythonImportsCheck = [ "google.cloud.orgpolicy" ];

  meta = with lib; {
    description = "Protobufs for Google Cloud Organization Policy.";
    homepage = "https://github.com/googleapis/python-org-policy";
    license = licenses.asl20;
    maintainers = with maintainers; [ austinbutler ];
  };
}