Files
nixpkgs/pkgs/development/python-modules/autopxd2/default.nix
T
Martin Weinelt 3478ae5b12 python3Packages.autopxd2: 2.5.0 -> 3.2.2
This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:16 +01:00

49 lines
804 B
Nix

{
buildPythonPackage,
lib,
fetchPypi,
setuptools,
pycparser,
click,
pytestCheckHook,
cython,
}:
buildPythonPackage rec {
pname = "python-autopxd2";
version = "3.2.2";
pyproject = true;
src = fetchPypi {
pname = "autopxd2";
inherit version;
hash = "sha256-fzq5xy7vPjxwgaEyBXk3Ke9JnySJ3PM5WAucFCZ/IP8=";
};
build-system = [
setuptools
];
dependencies = [
pycparser
click
cython
];
nativeCheckInputs = [
pytestCheckHook
];
enabledTestPaths = [
"test/"
];
meta = {
homepage = "https://github.com/elijahr/python-autopxd2";
mainProgram = "autopxd";
maintainers = with lib.maintainers; [ bot-wxt1221 ];
license = lib.licenses.mit;
description = "Generates .pxd files automatically from .h files";
};
}