Files
nixpkgs/pkgs/development/python-modules/mixpanel/default.nix
T
Martin Weinelt ddda8e1b0a python3Packages.mixpanel: 4.10.1 -> 5.0.0
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:33 +01:00

57 lines
909 B
Nix

{
buildPythonPackage,
fetchFromGitHub,
lib,
# build-system
setuptools,
# dependencies
asgiref,
httpx,
pydantic,
requests,
# tests
pytest-asyncio,
pytestCheckHook,
responses,
respx,
}:
buildPythonPackage rec {
pname = "mixpanel";
version = "5.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mixpanel";
repo = "mixpanel-python";
tag = "v${version}";
hash = "sha256-Q8Kn2dyID1hYjKmEv0e+R/y5dsp/JEkqCdNqQHJsOrI=";
};
build-system = [ setuptools ];
dependencies = [
asgiref
httpx
pydantic
requests
];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
responses
respx
];
meta = {
homepage = "https://github.com/mixpanel/mixpanel-python";
description = "Official Mixpanel Python library";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ kamadorueda ];
};
}