mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
27 lines
672 B
Nix
27 lines
672 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.poetry = {
|
|
enable = true;
|
|
settings = {
|
|
virtualenvs.create = true;
|
|
virtualenvs.in-project = true;
|
|
};
|
|
};
|
|
|
|
test.stubs.poetry = { };
|
|
|
|
nmt.script = let
|
|
expectedConfDir =
|
|
if pkgs.stdenv.isDarwin then "Library/Application Support" else ".config";
|
|
expectedConfigPath = "home-files/${expectedConfDir}/pypoetry/config.toml";
|
|
expectedConfigContent = pkgs.writeText "poetry.config-custom.expected" ''
|
|
[virtualenvs]
|
|
create = true
|
|
in-project = true
|
|
'';
|
|
in ''
|
|
assertFileExists "${expectedConfigPath}"
|
|
assertFileContent "${expectedConfigPath}" "${expectedConfigContent}"
|
|
'';
|
|
}
|