mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
Merge pull request #277651 from natsukium/rdkit/update
python311Packages.rdkit: 2023.09.1 -> 2023.09.3; coordgenlibs: fix build with clang
This commit is contained in:
commit
c10df0fb3e
|
@ -7,23 +7,31 @@
|
||||||
, maeparser
|
, maeparser
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "coordgenlibs";
|
pname = "coordgenlibs";
|
||||||
version = "3.0.2";
|
version = "3.0.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "schrodinger";
|
owner = "schrodinger";
|
||||||
repo = pname;
|
repo = "coordgenlibs";
|
||||||
rev = "v${version}";
|
rev = "v${finalAttrs.version}";
|
||||||
sha256 = "sha256-casFPNbPv9mkKpzfBENW7INClypuCO1L7clLGBXvSvI=";
|
hash = "sha256-casFPNbPv9mkKpzfBENW7INClypuCO1L7clLGBXvSvI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = [ boost zlib maeparser ];
|
buildInputs = [ boost zlib maeparser ];
|
||||||
|
|
||||||
|
env = lib.optionalAttrs stdenv.cc.isClang {
|
||||||
|
NIX_CFLAGS_COMPILE = "-Wno-unused-but-set-variable";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Schrodinger-developed 2D Coordinate Generation";
|
description = "Schrodinger-developed 2D Coordinate Generation";
|
||||||
|
homepage = "https://github.com/schrodinger/coordgenlibs";
|
||||||
|
changelog = "https://github.com/schrodinger/coordgenlibs/releases/tag/${finalAttrs.version}";
|
||||||
maintainers = [ maintainers.rmcgibbo ];
|
maintainers = [ maintainers.rmcgibbo ];
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
, cmake
|
, cmake
|
||||||
, comic-neue
|
, comic-neue
|
||||||
, boost
|
, boost
|
||||||
, catch2
|
, catch2_3
|
||||||
, inchi
|
, inchi
|
||||||
, cairo
|
, cairo
|
||||||
, eigen
|
, eigen
|
||||||
|
@ -42,8 +42,8 @@ let
|
||||||
in
|
in
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "rdkit";
|
pname = "rdkit";
|
||||||
version = "2023.09.1";
|
version = "2023.09.3";
|
||||||
format = "other";
|
pyproject = false;
|
||||||
|
|
||||||
src =
|
src =
|
||||||
let
|
let
|
||||||
|
@ -53,7 +53,7 @@ buildPythonPackage rec {
|
||||||
owner = pname;
|
owner = pname;
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "Release_${versionTag}";
|
rev = "Release_${versionTag}";
|
||||||
hash = "sha256-qaYD/46oCTnso1FbD08zr2JuatKmSSqNBhOYlfeIiAA=";
|
hash = "sha256-bewOdmpnm6cArD5iaMKNqT8z4GUIpih+JzJ+wdo/lrI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
unpackPhase = ''
|
unpackPhase = ''
|
||||||
|
@ -84,6 +84,7 @@ buildPythonPackage rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
boost
|
boost
|
||||||
cairo
|
cairo
|
||||||
|
catch2_3
|
||||||
] ++ lib.optionals (stdenv.system == "x86_64-darwin") [
|
] ++ lib.optionals (stdenv.system == "x86_64-darwin") [
|
||||||
memorymappingHook
|
memorymappingHook
|
||||||
];
|
];
|
||||||
|
@ -109,7 +110,6 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DCATCH_DIR=${catch2}/include/catch2"
|
|
||||||
"-DINCHI_LIBRARY=${inchi}/lib/libinchi.so"
|
"-DINCHI_LIBRARY=${inchi}/lib/libinchi.so"
|
||||||
"-DINCHI_LIBRARIES=${inchi}/lib/libinchi.so"
|
"-DINCHI_LIBRARIES=${inchi}/lib/libinchi.so"
|
||||||
"-DINCHI_INCLUDE_DIR=${inchi}/include/inchi"
|
"-DINCHI_INCLUDE_DIR=${inchi}/include/inchi"
|
||||||
|
|
Loading…
Reference in a new issue