nixpkgs/pkgs/development/python-modules/pydash/default.nix
Maximilian Bosch d0a55e85bb
python3Packages.pydash: different homepage
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-03-19 23:25:50 +01:00

25 lines
718 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, mock, pytestCheckHook, invoke }:
buildPythonPackage rec {
pname = "pydash";
version = "4.9.3";
src = fetchFromGitHub {
owner = "dgilland";
repo = pname;
rev = "v${version}";
sha256 = "sha256-BAyiSnILvujUOFOAkiXSgyozs2Q809pYihHwa+6BHcQ=";
};
patches = [ ./0001-Only-build-unit-tests.patch ];
checkInputs = [ mock pytestCheckHook invoke ];
meta = with lib; {
homepage = "https://github.com/dgilland/pydash";
description = "The kitchen sink of Python utility libraries for doing \"stuff\" in a functional way. Based on the Lo-Dash Javascript library.";
license = licenses.mit;
maintainers = with maintainers; [ ma27 ];
};
}