2018-11-02 19:13:44 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, enum34
|
|
|
|
, google_api_core
|
|
|
|
, pytest
|
2019-02-03 10:56:30 +00:00
|
|
|
, mock
|
2018-11-02 19:13:44 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "google-cloud-dlp";
|
2019-12-19 19:31:12 +00:00
|
|
|
version = "0.13.0";
|
2018-11-02 19:13:44 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 19:31:12 +00:00
|
|
|
sha256 = "844f5e63597c2a15561eec68397ee5f425e9be7728d2d7072f50f983fab31b9a";
|
2018-11-02 19:13:44 +00:00
|
|
|
};
|
|
|
|
|
2019-02-03 10:56:30 +00:00
|
|
|
checkInputs = [ pytest mock ];
|
2018-11-02 19:13:44 +00:00
|
|
|
propagatedBuildInputs = [ enum34 google_api_core ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pytest tests/unit
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Cloud Data Loss Prevention (DLP) API API client library";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
|
2018-11-02 19:13:44 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
|
|
|
};
|
|
|
|
}
|