mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
29 lines
No EOL
554 B
Nix
29 lines
No EOL
554 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
cmake,
|
|
setuptools,
|
|
python,
|
|
}: let
|
|
cppyy = python.buildPythonPackage rec {
|
|
pname = "cppyy";
|
|
version = "3.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wlav";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = lib.fakeSha256;
|
|
};
|
|
|
|
pythonImportsCheck = ["cppyy" "test"];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/wlav/cppyy";
|
|
description = "Python C++ bindings interface based on Cling/LLVM";
|
|
license = licenses.bsd3Lbnl;
|
|
};
|
|
};
|
|
in cppyy |