Files
nixpkgs/pkgs/development/python-modules/cgen/default.nix
Martin Weinelt 104c6eab3a python3Packages.cgen: 2020.1 -> 2025.1
This commit was automatically generated using update-python-libraries.
2025-08-09 18:58:49 +02:00

39 lines
689 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
pytools,
numpy,
typing-extensions,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "cgen";
version = "2025.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-efAeAQ1JwT5YtMqPLUmWprcXiWj18tkGJiczSArnotQ=";
};
build-system = [ hatchling ];
dependencies = [
pytools
numpy
typing-extensions
];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "C/C++ source generation from an AST";
homepage = "https://github.com/inducer/cgen";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sigmanificient ];
};
}