datadog package and also support for hatchling

This commit is contained in:
Derek Kulinski 2022-04-15 18:19:55 -07:00 committed by adisbladis
parent b7c9746bb5
commit a992cb630b
3 changed files with 5 additions and 1 deletions

View file

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

View file

@ -14,7 +14,7 @@ let
in in
( (
# Flit only works on Python3 # 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 else
drv.overridePythonAttrs ( drv.overridePythonAttrs (
old: old:

View file

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