depot/third_party/nixpkgs/pkgs/development/python-modules/scikit-misc/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

91 lines
1.6 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, cython
, gfortran
, git
, meson-python
, pkg-config
, blas
, lapack
, numpy
, setuptools
, wheel
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "scikit-misc";
version = "0.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "has2k1";
repo = "scikit-misc";
rev = "refs/tags/v${version}";
hash = "sha256-2L30hvKbFqIGlSEbzc1HvHybBqDGldJfZoUpqJJOv2Q=";
};
postPatch = ''
patchShebangs .
# unbound numpy and disable coverage testing in pytest
substituteInPlace pyproject.toml \
--replace 'numpy==' 'numpy>=' \
--replace 'addopts = "' '#addopts = "'
# provide a version to use when git fails to get the tag
[[ -f skmisc/_version.py ]] || \
echo '__version__ = "${version}"' > skmisc/_version.py
'';
nativeBuildInputs = [
cython
gfortran
git
meson-python
numpy
pkg-config
setuptools
wheel
];
propagatedBuildInputs = [
numpy
];
buildInputs = [
blas
lapack
];
mesonFlags = [
"-Dblas=${blas.pname}"
"-Dlapack=${lapack.pname}"
];
nativeCheckInputs = [
pytestCheckHook
];
# can not run tests from source directory
preCheck = ''
cd "$(mktemp -d)"
'';
pytestFlagsArray = [
"--pyargs skmisc"
];
pythonImportsCheck = [
"skmisc"
];
meta = with lib; {
description = "Miscellaneous tools for scientific computing";
homepage = "https://github.com/has2k1/scikit-misc";
license = licenses.bsd3;
maintainers = with maintainers; [ onny ];
};
}