Files
nixpkgs/pkgs/development/python-modules/numdifftools/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

50 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
numpy,
pythonOlder,
scipy,
}:
buildPythonPackage rec {
pname = "numdifftools";
version = "0.9.41";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pbrod";
repo = "numdifftools";
rev = "v${version}";
hash = "sha256-HYacLaowSDdrwkxL1h3h+lw/8ahzaecpXEnwrCqMCWk=";
};
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 = {
description = "Library to solve automatic numerical differentiation problems in one or more variables";
homepage = "https://github.com/pbrod/numdifftools";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
};
}