mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
27 lines
548 B
Nix
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 ];
|
|
};
|
|
}
|