Files
nixos/packages/pybinding/default.nix
2025-09-26 17:25:14 +08:00

13 lines
386 B
Nix

{ src, buildPythonPackage, setuptools, cmake, buildProxy, distutils, numpy, scipy, matplotlib, pytest }:
buildPythonPackage
{
name = "pybinding";
inherit src;
pyproject = true;
build-system = [ setuptools cmake distutils ];
dependencies = [ numpy scipy matplotlib pytest ];
dontUseCmakeConfigure = true;
preBuild = ''source ${buildProxy}'';
patches = [ ./fix.patch ];
}