nixpkgs/pkgs/development/python-modules/xnd/default.nix
volth f3282c8d1e treewide: remove unused variables (#63177)
* treewide: remove unused variables

* making ofborg happy
2019-06-16 19:59:05 +00:00

30 lines
818 B
Nix

{ buildPythonPackage
, ndtypes
, libndtypes
, libxnd
, isPy27
}:
buildPythonPackage {
pname = "xnd";
disabled = isPy27;
inherit (libxnd) version src meta;
propagatedBuildInputs = [ ndtypes ];
postPatch = ''
substituteInPlace setup.py \
--replace 'include_dirs = ["libxnd", "ndtypes/python/ndtypes"] + INCLUDES' \
'include_dirs = ["${libndtypes}/include", "${ndtypes}/include", "${libxnd}/include"]' \
--replace 'library_dirs = ["libxnd", "ndtypes/libndtypes"] + LIBS' \
'library_dirs = ["${libndtypes}/lib", "${libxnd}/lib"]' \
--replace 'runtime_library_dirs = ["$ORIGIN"]' \
'runtime_library_dirs = ["${libndtypes}/lib", "${libxnd}/lib"]' \
'';
postInstall = ''
mkdir $out/include
cp python/xnd/*.h $out/include
'';
}