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