python3Packages.hatch-mypyc: init at 0.16.0

New dependency for coredis.
This commit is contained in:
Martin Weinelt
2026-01-22 01:18:09 +01:00
parent 9c90383ea8
commit ce1ecd2f07
2 changed files with 50 additions and 0 deletions
@@ -0,0 +1,48 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
mypy,
pathspec,
setuptools,
build,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "hatch-mypyc";
version = "0.16.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ofek";
repo = "hatch-mypyc";
rev = "v${finalAttrs.version}";
hash = "sha256-3bIi2tlAcBurWqqPDVTJ1/EU2KTd1XVU97jFOaYtW5U=";
};
build-system = [
hatchling
];
dependencies = [
hatchling
mypy
pathspec
setuptools
];
doCheck = false; # network access
pythonImportsCheck = [
"hatch_mypyc"
];
meta = {
description = "Hatch build hook plugin for Mypyc";
homepage = "https://github.com/ofek/hatch-mypyc";
license = lib.licenses.mit;
maintainers = [ ];
};
})
+2
View File
@@ -6817,6 +6817,8 @@ self: super: with self; {
hatch-min-requirements = callPackage ../development/python-modules/hatch-min-requirements { };
hatch-mypyc = callPackage ../development/python-modules/hatch-mypyc { };
hatch-nodejs-version = callPackage ../development/python-modules/hatch-nodejs-version { };
hatch-odoo = callPackage ../development/python-modules/hatch-odoo { };