python3Packages.mixpanel: 4.10.1 -> 5.0.0

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 17:19:33 +01:00
parent 1e30c04042
commit ddda8e1b0a
@@ -3,37 +3,48 @@
fetchFromGitHub,
lib,
# Python Dependencies
six,
urllib3,
# build-system
setuptools,
# dependencies
asgiref,
httpx,
pydantic,
requests,
# tests
pytest-asyncio,
pytestCheckHook,
responses,
respx,
}:
buildPythonPackage rec {
pname = "mixpanel";
version = "4.10.1";
format = "setuptools";
version = "5.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mixpanel";
repo = "mixpanel-python";
tag = "v${version}";
hash = "sha256-i5vT5FTnw+BanHHrlRsPJ3EooZjQcaosbaHoh/uPRmQ=";
hash = "sha256-Q8Kn2dyID1hYjKmEv0e+R/y5dsp/JEkqCdNqQHJsOrI=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
asgiref
httpx
pydantic
requests
six
urllib3
];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
responses
respx
];
meta = {