mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 11:45:45 +03:00

This reverts commit65a333600d
. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
toPythonModule,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
gtest,
|
|
xtensor,
|
|
pybind11,
|
|
numpy,
|
|
}:
|
|
|
|
toPythonModule (
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "xtensor-python";
|
|
version = "0.27.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xtensor-stack";
|
|
repo = "xtensor-python";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-Cy/aXuiriE/qxSd4Apipzak30DjgE7jX8ai1ThJ/VnE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ pybind11 ];
|
|
nativeCheckInputs = [ gtest ];
|
|
doCheck = true;
|
|
cmakeFlags = [
|
|
# Always build the tests, even if not running them, because testing whether
|
|
# they can be built is a test in itself.
|
|
"-DBUILD_TESTS=ON"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
xtensor
|
|
numpy
|
|
];
|
|
|
|
checkTarget = "xtest";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/xtensor-stack/xtensor-python";
|
|
description = "Python bindings for the xtensor C++ multi-dimensional array library";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ lsix ];
|
|
};
|
|
})
|
|
)
|