Files
nixpkgs/pkgs/development/python-modules/eventkit/default.nix
Yueh-Shun Li 8d9f4201fc python3Packages.eventkit: remove dontUseSetuptoolsCheck specification
setuptooolsCheckHooks has been removed.
2025-02-20 17:09:20 +08:00

26 lines
515 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 ];
meta = with lib; {
homepage = "https://github.com/erdewit/eventkit";
description = "Event-driven data pipelines";
license = licenses.bsd2;
maintainers = with maintainers; [ cab404 ];
};
}