at 22.05-pre 526 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytools 5, numpy 6}: 7 8buildPythonPackage rec { 9 pname = "genpy"; 10 version = "2021.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "9bc062fa98c5c466ff464d8974be81a6bf67af9247b5e5176215ad1e81a6cdac"; 15 }; 16 17 propagatedBuildInputs = [ 18 pytools 19 numpy 20 ]; 21 22 meta = with lib; { 23 description = "C/C++ source generation from an AST"; 24 homepage = "https://github.com/inducer/genpy"; 25 license = licenses.mit; 26 maintainers = [ maintainers.costrouc ]; 27 }; 28}