depot/third_party/nixpkgs/pkgs/development/python-modules/eventkit/default.nix

27 lines
548 B
Nix
Raw Normal View History

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