python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / genpy / default.nix
blob90686b3ec47044ec13cf4c38a26e1903fcfda06d
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytools,
6   numpy,
7 }:
9 buildPythonPackage rec {
10   pname = "genpy";
11   version = "2022.1";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-FGZbQlUgbJjnuiDaKS/vVlraMVmFF1cAQk7S3aPWXx4=";
17   };
19   propagatedBuildInputs = [
20     pytools
21     numpy
22   ];
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   };