erpnext-nix/python/posthog.nix

22 lines
368 B
Nix
Raw Normal View History

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