mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
datadog package and also support for hatchling
This commit is contained in:
parent
b7c9746bb5
commit
a992cb630b
3 changed files with 5 additions and 1 deletions
|
@ -246,6 +246,9 @@
|
||||||
"cysignals": [
|
"cysignals": [
|
||||||
"cython"
|
"cython"
|
||||||
],
|
],
|
||||||
|
"datadog": [
|
||||||
|
"hatchling"
|
||||||
|
],
|
||||||
"datrie": [
|
"datrie": [
|
||||||
"cython"
|
"cython"
|
||||||
],
|
],
|
||||||
|
|
|
@ -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:
|
||||||
|
|
|
@ -29,6 +29,7 @@ BUILD_SYSTEMS = [
|
||||||
"pbr",
|
"pbr",
|
||||||
"flitBuildHook",
|
"flitBuildHook",
|
||||||
"cython",
|
"cython",
|
||||||
|
"hatchling",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue