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 inherit pname version;
14
15 src = fetchPypi { inherit pname version hash; };
16
17 propagatedBuildInputs = [ numpy ];
18
19 meta = with lib; {
20 homepage = "https://github.com/erdewit/eventkit";
21 description = "Event-driven data pipelines";
22 license = licenses.bsd2;
23 maintainers = with maintainers; [ cab404 ];
24 };
25}