mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
Fix formatting
This commit is contained in:
parent
cac2eaed19
commit
32bbe07355
1 changed files with 3 additions and 3 deletions
|
@ -120,7 +120,7 @@ self: super:
|
||||||
|
|
||||||
cryptography = super.cryptography.overridePythonAttrs (
|
cryptography = super.cryptography.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
nativeBuildInputs = old.nativeBuildInputs or []
|
nativeBuildInputs = old.nativeBuildInputs or [ ]
|
||||||
++ stdenv.lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) self.python.pythonForBuild.pkgs.cffi;
|
++ stdenv.lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) self.python.pythonForBuild.pkgs.cffi;
|
||||||
buildInputs = old.buildInputs ++ [ pkgs.openssl ];
|
buildInputs = old.buildInputs ++ [ pkgs.openssl ];
|
||||||
}
|
}
|
||||||
|
@ -622,8 +622,8 @@ self: super:
|
||||||
withMysql = old.passthru.withMysql or false;
|
withMysql = old.passthru.withMysql or false;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
buildInputs = old.buildInputs or [] ++ [ pkgs.sqlite ];
|
buildInputs = old.buildInputs or [ ] ++ [ pkgs.sqlite ];
|
||||||
propagatedBuildInputs = old.propagatedBuildInputs or []
|
propagatedBuildInputs = old.propagatedBuildInputs or [ ]
|
||||||
++ lib.optional withPostgres self.psycopg2
|
++ lib.optional withPostgres self.psycopg2
|
||||||
++ lib.optional withMysql self.mysql-connector;
|
++ lib.optional withMysql self.mysql-connector;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue