summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/spacy/legacy.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/spacy/legacy.nix')
-rw-r--r--pkgs/development/python-modules/spacy/legacy.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/spacy/legacy.nix b/pkgs/development/python-modules/spacy/legacy.nix
new file mode 100644
index 000000000000..f8b011d83ccf
--- /dev/null
+++ b/pkgs/development/python-modules/spacy/legacy.nix
@@ -0,0 +1,26 @@
+{ lib
+, fetchPypi
+, buildPythonPackage
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "spacy-legacy";
+ version = "3.0.5";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "sha256-Uy94rjFllSj622RTzd6UJaQmIniCw4gpeq/X57QcIpA=";
+ };
+
+ # checkInputs = [ pytestCheckHook spacy ];
+ doCheck = false;
+ pythonImportsCheck = [ "spacy_legacy" ];
+
+ meta = with lib; {
+ description = "A Path interface for local and cloud bucket storage";
+ homepage = "https://github.com/justindujardin/pathy";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ melling ];
+ };
+}