blob: 64e1f45d29de2f5ceaf94f25db2495372e59422c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{ 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
];
};
}
|