
If a Python package does not come with either `format` or `pyproject` we consider it a setuptools build, that calls `setup.py` directly, which is deprecated. This change, as a first step, migrates a large chunk of these packages to set setuptools as their explicit format This is so we can unify the problem space for the next step of the migration.
27 lines
540 B
Nix
27 lines
540 B
Nix
{
|
|
buildPythonPackage,
|
|
lib,
|
|
fetchPypi,
|
|
numpy,
|
|
}:
|
|
let
|
|
pname = "eventkit";
|
|
version = "1.0.3";
|
|
hash = "sha256-mUl/bzxjilD/dhby+M2Iexi7/zdl3BvYaBVU2xRnyTM=";
|
|
in
|
|
buildPythonPackage {
|
|
format = "setuptools";
|
|
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 ];
|
|
};
|
|
}
|