Files
nixpkgs/pkgs/development/python-modules/codepy/default.nix
T
Martin Weinelt fc1c3d1f8b python3Packages.codepy: 2019.1 -> 2025.1
This commit was automatically generated using update-python-libraries.
2025-08-09 18:58:52 +02:00

42 lines
756 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytools,
appdirs,
six,
cgen,
}:
buildPythonPackage rec {
pname = "codepy";
version = "2025.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "inducer";
repo = "codepy";
tag = "v${version}";
hash = "sha256-PHIC3q9jQlRRoUoemVtyrl5hcZXMX28gRkI5Xpk9yBY=";
};
buildInputs = [
pytools
six
cgen
];
propagatedBuildInputs = [ appdirs ];
pythonImportsCheck = [ "codepy" ];
# Tests are broken
doCheck = false;
meta = with lib; {
homepage = "https://github.com/inducer/codepy";
description = "Generate and execute native code at run time, from Python";
license = licenses.mit;
maintainers = with maintainers; [ atila ];
};
}