22 testNltkData = symlinkJoin {
23 name = "nltk-test-data";
34 buildPythonPackage rec {
39 disabled = pythonOlder "3.8";
41 src = fetchFromGitHub {
45 hash = "sha256-2Y+NPwUnQMj0oXoCMfUOG40lqduy9GTcqxfyuFDOkHc=";
53 build-system = [ poetry-core ];
74 "test_1_stack_overflow_survey"
77 # Package import requires NLTK data to be downloaded
78 # It is the only way to set NLTK_DATA environment variable,
79 # so that it is available in pythonImportsCheck
80 env.NLTK_DATA = testNltkData;
81 pythonImportsCheck = [ "type_infer" ];
84 changelog = "https://github.com/mindsdb/type_infer/releases/tag/${tag}";
85 description = "Automated type inference for Machine Learning pipelines";
86 homepage = "https://github.com/mindsdb/type_infer";
87 license = licenses.gpl3Only;
88 maintainers = with maintainers; [ mbalatsko ];