Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at github-to-sqlite-beautifulsoup4 30 lines 387 B view raw
1{ lib 2, buildPythonPackage 3, cmake 4, numpy 5, pillow 6, pybind11 7, zxing-cpp 8}: 9 10buildPythonPackage rec { 11 pname = "zxing_cpp"; 12 inherit (zxing-cpp) src version meta; 13 14 sourceRoot = "${src.name}/wrappers/python"; 15 16 dontUseCmakeConfigure = true; 17 18 propagatedBuildInputs = [ 19 pybind11 20 numpy 21 ]; 22 23 nativeBuildInputs = [ 24 cmake 25 ]; 26 27 nativeCheckInputs = [ 28 pillow 29 ]; 30}