1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 numpy, 6 setuptools, 7}: 8 9buildPythonPackage rec { 10 pname = "wrapcco"; 11 version = "0.1.3"; 12 pyproject = true; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-nts5cujixB+PfAf9Fk7kOXW4BeI/0q5GYTthCI76ZOA="; 17 }; 18 19 build-system = [ setuptools ]; 20 dependencies = [ 21 numpy 22 setuptools 23 ]; 24 25 # require non trivial test setup 26 doCheck = false; 27 28 pythonImportsCheck = [ "wrapcco" ]; 29 30 meta = { 31 description = "Supercharge Python with C++ extensions"; 32 homepage = "https://github.com/H3cth0r/wrapc.co"; 33 license = lib.licenses.mit; 34 maintainers = with lib.maintainers; [ h3cth0r ]; 35 }; 36}