depot/third_party/nixpkgs/pkgs/development/python-modules/genpy/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

28 lines
490 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytools
, numpy
}:
buildPythonPackage rec {
pname = "genpy";
version = "2022.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-FGZbQlUgbJjnuiDaKS/vVlraMVmFF1cAQk7S3aPWXx4=";
};
propagatedBuildInputs = [
pytools
numpy
];
meta = with lib; {
description = "C/C++ source generation from an AST";
homepage = "https://github.com/inducer/genpy";
license = licenses.mit;
maintainers = [ ];
};
}