587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
26 lines
548 B
Nix
26 lines
548 B
Nix
{ buildPythonPackage
|
|
, lib
|
|
, fetchPypi
|
|
, numpy
|
|
}:
|
|
let
|
|
pname = "eventkit";
|
|
version = "1.0.3";
|
|
hash = "sha256-mUl/bzxjilD/dhby+M2Iexi7/zdl3BvYaBVU2xRnyTM=";
|
|
in buildPythonPackage {
|
|
inherit pname version;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version hash;
|
|
};
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
dontUseSetuptoolsCheck = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/erdewit/eventkit";
|
|
description = "Event-driven data pipelines";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ cab404 ];
|
|
};
|
|
}
|