nixpkgs/pkgs/development/python-modules/mixpanel/default.nix
2024-03-11 23:47:21 +00:00

48 lines
789 B
Nix

{ buildPythonPackage
, fetchFromGitHub
, lib
# Python Dependencies
, six
, urllib3
, requests
# tests
, pytestCheckHook
, responses
}:
buildPythonPackage rec {
pname = "mixpanel";
version = "4.10.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "mixpanel";
repo = "mixpanel-python";
rev = "refs/tags/v${version}";
hash = "sha256-i5vT5FTnw+BanHHrlRsPJ3EooZjQcaosbaHoh/uPRmQ=";
};
propagatedBuildInputs = [
requests
six
urllib3
];
nativeCheckInputs = [
pytestCheckHook
responses
];
meta = with lib; {
homepage = "https://github.com/mixpanel/mixpanel-python";
description = "Official Mixpanel Python library";
license = licenses.asl20;
maintainers = with maintainers; [
kamadorueda
];
};
}