python3Packages.hatch-mypyc: init at 0.16.0
New dependency for coredis.
This commit is contained in:
@@ -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 = [ ];
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user