1 { lib, buildPythonPackage, fetchFromGitHub, mock, pytestCheckHook, invoke }:
3 buildPythonPackage rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-BAyiSnILvujUOFOAkiXSgyozs2Q809pYihHwa+6BHcQ=";
14 patches = [ ./0001-Only-build-unit-tests.patch ];
16 checkInputs = [ mock pytestCheckHook invoke ];
19 homepage = "https://github.com/dgilland/pydash";
20 description = "The kitchen sink of Python utility libraries for doing \"stuff\" in a functional way. Based on the Lo-Dash Javascript library.";
21 license = licenses.mit;
22 maintainers = with maintainers; [ ma27 ];