nixpkgs/pkgs/development/python-modules/genpy/default.nix

29 lines
526 B
Nix
Raw Normal View History

2019-04-15 22:11:29 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pytools
, numpy
}:
buildPythonPackage rec {
pname = "genpy";
version = "2021.1";
2019-04-15 22:11:29 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "9bc062fa98c5c466ff464d8974be81a6bf67af9247b5e5176215ad1e81a6cdac";
2019-04-15 22:11:29 +01:00
};
propagatedBuildInputs = [
pytools
numpy
];
meta = with lib; {
description = "C/C++ source generation from an AST";
homepage = "https://github.com/inducer/genpy";
2019-04-15 22:11:29 +01:00
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}