python310Packages.pycapnp: move things to nativeBuildInputs

main
Sandro Jäckel 2 years ago
parent 7e2355fc04
commit 30b3033296
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 8
      pkgs/development/python-modules/pycapnp/default.nix

@ -20,16 +20,18 @@ buildPythonPackage rec {
sha256 = "1xi6df93ggkpmwckwbi356v7m32zv5qry8s45hvsps66dz438kmi";
};
buildInputs = [ capnproto cython pkgconfig ];
nativeBuildInputs = [ cython pkgconfig ];
# Tests disabled due to dependency on jinja and various other libraries.
buildInputs = [ capnproto ];
# Tests depend on schema_capnp which fails to generate
doCheck = false;
pythonImportsCheck = [ "capnp" ];
meta = with lib; {
homepage = "https://capnproto.github.io/pycapnp/";
maintainers = with maintainers; [ cstrahan lukeadams ];
license = licenses.bsd2;
homepage = "https://capnproto.github.io/pycapnp/";
};
}

Loading…
Cancel
Save