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