14 buildPythonPackage rec {
19 disabled = pythonOlder "3.8";
21 src = fetchFromGitHub {
24 rev = "refs/tags/v${version}";
25 hash = "sha256-4zNljz0U/iQd2DMC43qkdOY/mwtPlizgLmoaB7BVmxw=";
29 sed -i "/--cov/d" pyproject.toml
30 sed -i "/--no-cov/d" pyproject.toml
33 build-system = [ setuptools ];
35 dependencies = [ typing-extensions ];
44 pythonImportsCheck = [ "pydash" ];
47 # Disable mypy testing
48 "tests/pytest_mypy_testing/"
52 description = "Python utility libraries for doing stuff in a functional way";
53 homepage = "https://pydash.readthedocs.io";
54 changelog = "https://github.com/dgilland/pydash/blob/v${version}/CHANGELOG.rst";
55 license = licenses.mit;
56 maintainers = with maintainers; [ ma27 ];