1{
2 buildPythonPackage,
3 lib,
4 fetchPypi,
5 numpy,
6}:
7let
8 pname = "eventkit";
9 version = "1.0.3";
10 hash = "sha256-mUl/bzxjilD/dhby+M2Iexi7/zdl3BvYaBVU2xRnyTM=";
11in
12buildPythonPackage {
13 format = "setuptools";
14 inherit pname version;
15
16 src = fetchPypi { inherit pname version hash; };
17
18 propagatedBuildInputs = [ numpy ];
19
20 meta = with lib; {
21 homepage = "https://github.com/erdewit/eventkit";
22 description = "Event-driven data pipelines";
23 license = licenses.bsd2;
24 maintainers = with maintainers; [ cab404 ];
25 };
26}