10 buildPythonPackage rec {
11 pname = "autograd-gamma";
13 format = "setuptools";
15 src = fetchFromGitHub {
16 owner = "CamDavidsonPilon";
17 repo = "autograd-gamma";
19 sha256 = "0v03gly5k3a1hzb54zpw6409m3riak49qd27hkq2f66ai42ivqz2";
22 propagatedBuildInputs = [
27 pythonImportsCheck = [ "autograd_gamma" ];
29 checkInputs = [ pytestCheckHook ];
32 homepage = "https://github.com/CamDavidsonPilon/autograd-gamma";
33 description = "Autograd compatible approximations to the gamma family of functions";
34 license = lib.licenses.mit;
35 maintainers = with lib.maintainers; [ swflint ];