erpnext-nix/python/posthog.nix

23 lines
387 B
Nix
Raw Normal View History

2023-05-18 17:36:51 +02:00
{ buildPythonPackage
, fetchPypi
, backoff
, monotonic
, python-dateutil
, requests
2023-05-18 16:50:31 +02:00
}:
buildPythonPackage rec {
pname = "posthog";
version = "3.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-V9J5H/V1LOVroPm7iHb688qSCPHCxs6utaJQTDRJN2c=";
};
2023-05-18 17:36:51 +02:00
propagatedBuildInputs = [
backoff
monotonic
python-dateutil
requests
];
2023-05-18 17:49:23 +02:00
doCheck = false;
2023-05-18 16:50:31 +02:00
}