diff options
Diffstat (limited to 'pkgs/development/python-modules/textacy/default.nix')
-rw-r--r-- | pkgs/development/python-modules/textacy/default.nix | 47 |
1 files changed, 23 insertions, 24 deletions
diff --git a/pkgs/development/python-modules/textacy/default.nix b/pkgs/development/python-modules/textacy/default.nix index 18bdddfa0818..31e94229e771 100644 --- a/pkgs/development/python-modules/textacy/default.nix +++ b/pkgs/development/python-modules/textacy/default.nix @@ -1,23 +1,24 @@ -{ lib -, buildPythonPackage -, cachetools -, cytoolz -, fetchPypi -, floret -, jellyfish -, joblib -, matplotlib -, networkx -, numpy -, pyemd -, pyphen -, pytestCheckHook -, pythonOlder -, requests -, scikit-learn -, scipy -, spacy -, tqdm +{ + lib, + buildPythonPackage, + cachetools, + cytoolz, + fetchPypi, + floret, + jellyfish, + joblib, + matplotlib, + networkx, + numpy, + pyemd, + pyphen, + pytestCheckHook, + pythonOlder, + requests, + scikit-learn, + scipy, + spacy, + tqdm, }: buildPythonPackage rec { @@ -28,7 +29,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - sha256 = "sha256-a+AkSMCPx9fE7fhSiQBuOaSlPvdHIB/yS2dcZS9AxoY="; + hash = "sha256-a+AkSMCPx9fE7fhSiQBuOaSlPvdHIB/yS2dcZS9AxoY="; }; propagatedBuildInputs = [ @@ -49,9 +50,7 @@ buildPythonPackage rec { tqdm ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; pytestFlagsArray = [ # Almost all tests have to deal with downloading a dataset, only test pure tests |