nixpkgs/pkgs/development/python-modules/eventkit/default.nix
2024-05-22 17:32:03 +02:00

27 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 ];
};
}