depot/third_party/nixpkgs/pkgs/development/python-modules/minimal-snowplow-tracker/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

36 lines
668 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, requests
, six
}:
buildPythonPackage rec {
pname = "minimal-snowplow-tracker";
version = "0.0.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-rKv3Vy2w5/XL9pg9SV7vVAgfcb45IzDrOq25zLOdqqQ=";
};
propagatedBuildInputs = [
requests
six
];
# has no tests
doCheck = false;
pythonImportsCheck = [
"snowplow_tracker"
];
meta = with lib; {
description = "Minimal snowplow event tracker";
homepage = "https://github.com/dbt-labs/snowplow-python-tracker";
license = licenses.asl20;
maintainers = with maintainers; [ mausch tjni ];
};
}