biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / textnets / default.nix
blob09b47a1b12075c88e1ed68c332ab51dde79139a1
2   lib,
3   buildPythonPackage,
4   cairocffi,
5   cython,
6   fetchPypi,
7   igraph,
8   leidenalg,
9   pandas,
10   poetry-core,
11   pytestCheckHook,
12   pythonOlder,
13   scipy,
14   setuptools,
15   spacy,
16   spacy-lookups-data,
17   en_core_web_sm,
18   toolz,
19   tqdm,
20   wasabi,
23 buildPythonPackage rec {
24   pname = "textnets";
25   version = "0.9.4";
26   format = "pyproject";
28   disabled = pythonOlder "3.8";
30   src = fetchPypi {
31     inherit pname version;
32     hash = "sha256-4154ytzo1QpwhKA1BkVMss9fNIkysnClW/yfSVlX33M=";
33   };
35   nativeBuildInputs = [
36     cython
37     poetry-core
38     setuptools
39   ];
41   pythonRelaxDeps = [
42     "igraph"
43     "leidenalg"
44   ];
46   propagatedBuildInputs = [
47     cairocffi
48     igraph
49     leidenalg
50     pandas
51     scipy
52     spacy
53     spacy-lookups-data
54     toolz
55     tqdm
56     wasabi
57   ];
59   nativeCheckInputs = [
60     pytestCheckHook
61     en_core_web_sm
62   ];
64   pythonImportsCheck = [ "textnets" ];
66   # Enables the package to find the cythonized .so files during testing. See #255262
67   preCheck = ''
68     rm -r textnets
69   '';
71   disabledTests = [
72     # Test fails: Throws a UserWarning asking the user to install `textnets[fca]`.
73     "test_context"
74   ];
76   meta = with lib; {
77     description = "Text analysis with networks";
78     homepage = "https://textnets.readthedocs.io";
79     changelog = "https://github.com/jboynyc/textnets/blob/v${version}/HISTORY.rst";
80     license = licenses.gpl3Only;
81     maintainers = with maintainers; [ jboy ];
82   };