depot/third_party/nixpkgs/pkgs/development/python-modules/textnets/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

83 lines
1.4 KiB
Nix

{ lib
, buildPythonPackage
, cairocffi
, cython
, fetchPypi
, igraph
, leidenalg
, pandas
, poetry-core
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, scipy
, setuptools
, spacy
, spacy-lookups-data
, en_core_web_sm
, toolz
, tqdm
, wasabi
}:
buildPythonPackage rec {
pname = "textnets";
version = "0.9.4";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-4154ytzo1QpwhKA1BkVMss9fNIkysnClW/yfSVlX33M=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
cython
poetry-core
setuptools
];
pythonRelaxDeps = [ "igraph" "leidenalg" ];
propagatedBuildInputs = [
cairocffi
igraph
leidenalg
pandas
scipy
spacy
spacy-lookups-data
toolz
tqdm
wasabi
];
nativeCheckInputs = [
pytestCheckHook
en_core_web_sm
];
pythonImportsCheck = [
"textnets"
];
# Enables the package to find the cythonized .so files during testing. See #255262
preCheck = ''
rm -r textnets
'';
disabledTests = [
# Test fails: Throws a UserWarning asking the user to install `textnets[fca]`.
"test_context"
];
meta = with lib; {
description = "Text analysis with networks";
homepage = "https://textnets.readthedocs.io";
changelog = "https://github.com/jboynyc/textnets/blob/v${version}/HISTORY.rst";
license = licenses.gpl3Only;
maintainers = with maintainers; [ jboy ];
};
}