about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/eventkit/default.nix
blob: f0bda6bf4d0f0baf617b7c53136a51992e45abfa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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 ];
  };
}