summary refs log tree commit diff
path: root/pkgs/development/python-modules/numdifftools/default.nix
blob: bc5914be721c9c9ad80935ac652d031e99bd9685 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, pytestCheckHook
, pythonOlder
, scipy
}:

buildPythonPackage rec {
  pname = "numdifftools";
  version = "0.9.40";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "pbrod";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-YLi9cNHcZ/PlhrhvYOMfRTOt4kinQcfxvqInT8/0Qpg=";
  };

  propagatedBuildInputs = [
    numpy
    scipy
  ];

  # Tests requires algopy and other modules which are optional and/or not available
  doCheck = false;

  postPatch = ''
    substituteInPlace setup.py \
      --replace '"pytest-runner"' ""
    # Remove optional dependencies
    substituteInPlace requirements.txt \
      --replace "algopy>=0.4" "" \
      --replace "statsmodels>=0.6" ""
  '';

  pythonImportsCheck = [
    "numdifftools"
  ];

  meta = with lib; {
    description = "Library to solve automatic numerical differentiation problems in one or more variables";
    homepage = "https://github.com/pbrod/numdifftools";
    license = licenses.bsd3;
    maintainers = with maintainers; [ fab ];
  };
}