blob: 64416e0e7b7887d288725bae4b45a79e718b5f45 (
plain)
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
|
{
buildPythonPackage,
lib,
fetchPypi,
numpy,
}:
let
pname = "eventkit";
version = "1.0.3";
hash = "sha256-mUl/bzxjilD/dhby+M2Iexi7/zdl3BvYaBVU2xRnyTM=";
in
buildPythonPackage {
format = "setuptools";
inherit pname version;
src = fetchPypi { inherit pname version hash; };
propagatedBuildInputs = [ numpy ];
meta = {
homepage = "https://github.com/erdewit/eventkit";
description = "Event-driven data pipelines";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ cab404 ];
};
}
|