depot/third_party/nixpkgs/pkgs/development/python-modules/mixpanel/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

45 lines
792 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 ];
};
}