Files
nixpkgs/pkgs/development/python-modules/pydash/default.nix
Wolfgang Walther c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

56 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
invoke,
mock,
pytest7CheckHook,
pytest-cov-stub,
pythonOlder,
setuptools,
sphinx-rtd-theme,
typing-extensions,
}:
buildPythonPackage rec {
pname = "pydash";
version = "8.0.5";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "dgilland";
repo = "pydash";
tag = "v${version}";
hash = "sha256-u8vLE0kjsnV2HNt3N3kmnaabgQzW3FcH4qxycNdv1Ls=";
};
build-system = [ setuptools ];
dependencies = [ typing-extensions ];
nativeCheckInputs = [
invoke
mock
pytest7CheckHook
pytest-cov-stub
sphinx-rtd-theme
];
pythonImportsCheck = [ "pydash" ];
disabledTestPaths = [
# Disable mypy testing
"tests/pytest_mypy_testing/"
];
meta = with lib; {
description = "Python utility libraries for doing stuff in a functional way";
homepage = "https://pydash.readthedocs.io";
changelog = "https://github.com/dgilland/pydash/blob/v${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = [ ];
};
}