mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 18:56:40 +01:00
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
numpy,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "py3langid";
|
|
version = "0.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-CodaAxpYqvnb2nu4KF/XXoAae9J2IW/6vgN5AdS0Sew=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
# nixify path to the courlan binary in the test suite
|
|
postPatch = ''
|
|
substituteInPlace tests/test_langid.py --replace "'langid'" "'$out/bin/langid'"
|
|
substituteInPlace pyproject.toml --replace-fail \
|
|
'numpy >= 2.0.0' numpy
|
|
'';
|
|
|
|
pythonImportsCheck = [ "py3langid" ];
|
|
|
|
meta = {
|
|
description = "Fork of the language identification tool langid.py, featuring a modernized codebase and faster execution times";
|
|
mainProgram = "langid";
|
|
homepage = "https://github.com/adbar/py3langid";
|
|
changelog = "https://github.com/adbar/py3langid/blob/v${version}/HISTORY.rst";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ jokatzke ];
|
|
};
|
|
}
|