afe8ee8b47
The proper name for a python package is the one in the setuptools setup() call, which can also be seen on pypi. Correct: https://pypi.org/project/torch/ Wrong: https://pypi.org/project/pytorch/ Includes a treewide rename of the attribute and creates aliases for the old name.
38 lines
776 B
Nix
38 lines
776 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, scikit-learn
|
|
}:
|
|
|
|
let
|
|
pname = "py-deprecate";
|
|
version = "0.3.2";
|
|
in
|
|
buildPythonPackage {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Borda";
|
|
repo = "pyDeprecate";
|
|
rev = "v${version}";
|
|
hash = "sha256-84RmQvLxwtLPQk3hX7Q6eeJeejhrO3t+mc95W1E85Fg=";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
scikit-learn
|
|
];
|
|
|
|
pythonImportsCheck = [ "deprecate" ];
|
|
|
|
meta = with lib; {
|
|
description = "A 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
|
|
];
|
|
};
|
|
}
|
|
|