mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
I have effectively renounced on maintaining all these packages and I do
not plan to return them except if I'm forced to.
I am also fine with most of these packages being dropped for next
releases if no maintainer shows up.
Change-Id: I8d167c8029b6991181bd7a094af21c3313af2b51
Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
(cherry picked from commit 6a63a4ad8b)
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
bottleneck,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
jellyfish,
|
|
joblib,
|
|
networkx,
|
|
numexpr,
|
|
numpy,
|
|
pandas,
|
|
pyarrow,
|
|
pytest,
|
|
scikit-learn,
|
|
scipy,
|
|
setuptools,
|
|
setuptools-scm,
|
|
wheel,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "recordlinkage";
|
|
version = "0.16";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-7NoMEN/xOLFwaBXeMysShfZwrn6MzpJZYhNQHVieaqQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pyarrow
|
|
jellyfish
|
|
numpy
|
|
pandas
|
|
scipy
|
|
scikit-learn
|
|
joblib
|
|
networkx
|
|
bottleneck
|
|
numexpr
|
|
];
|
|
|
|
# pytestCheckHook does not work
|
|
# Reusing their CI setup which involves 'rm -rf recordlinkage' in preCheck phase do not work too.
|
|
nativeCheckInputs = [ pytest ];
|
|
|
|
pythonImportsCheck = [ "recordlinkage" ];
|
|
|
|
meta = {
|
|
description = "Library to link records in or between data sources";
|
|
homepage = "https://recordlinkage.readthedocs.io/";
|
|
changelog = "https://github.com/J535D165/recordlinkage/releases/tag/v${version}";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|