1 { lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, autograd, scipy }:
3 buildPythonPackage rec {
4 pname = "autograd-gamma";
8 src = fetchFromGitHub {
9 owner = "CamDavidsonPilon";
10 repo = "autograd-gamma";
12 sha256 = "0v03gly5k3a1hzb54zpw6409m3riak49qd27hkq2f66ai42ivqz2";
15 propagatedBuildInputs = [
20 pythonImportsCheck = [ "autograd_gamma" ];
22 checkInputs = [ pytestCheckHook ];
25 homepage = "https://github.com/CamDavidsonPilon/autograd-gamma";
26 description = "Autograd compatible approximations to the gamma family of functions";
27 license = lib.licenses.mit;
28 maintainers = with lib.maintainers; [ swflint ];