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.
38 lines
801 B
Nix
38 lines
801 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
scikit-learn,
|
|
}:
|
|
|
|
let
|
|
pname = "py-deprecate";
|
|
version = "0.3.2";
|
|
in
|
|
buildPythonPackage {
|
|
inherit pname version;
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Borda";
|
|
repo = "pyDeprecate";
|
|
rev = "v${version}";
|
|
hash = "sha256-84RmQvLxwtLPQk3hX7Q6eeJeejhrO3t+mc95W1E85Fg=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
scikit-learn
|
|
];
|
|
|
|
pythonImportsCheck = [ "deprecate" ];
|
|
|
|
meta = with lib; {
|
|
description = "Module for marking deprecated functions or classes and re-routing to the new successors' instance. Used by torchmetrics";
|
|
homepage = "https://borda.github.io/pyDeprecate/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ SomeoneSerge ];
|
|
};
|
|
}
|