Merge pull request #593 from takeda/takeda-patch-2

datadog package and hatch support
This commit is contained in:
adisbladis 2022-04-16 11:07:28 +07:00 committed by GitHub
commit 204d242690
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View file

@ -246,6 +246,9 @@
"cysignals": [
"cython"
],
"datadog": [
"hatchling"
],
"datrie": [
"cython"
],

View file

@ -14,7 +14,7 @@ let
in
(
# Flit only works on Python3
if (attr == "flit-core" || attr == "flit") && !self.isPy3k then drv
if (attr == "flit-core" || attr == "flit" || attr == "hatchling") && !self.isPy3k then drv
else
drv.overridePythonAttrs (
old:

View file

@ -29,6 +29,7 @@ BUILD_SYSTEMS = [
"pbr",
"flitBuildHook",
"cython",
"hatchling",
]