{config, lib, ...}: let l = lib // builtins; python = config.deps.python; in { imports = [ ../../drv-parts/mach-nix-xs ]; deps = {nixpkgs, ...}: { python = nixpkgs.python39; }; public = { name = "ansible"; version = "2.7.1"; }; mkDerivation = { preUnpack = '' export src=$(ls ${config.mach-nix.pythonSources}/names/${config.public.name}/*); ''; }; env = { format = "setuptools"; pythonImportsCheck = [ config.public.name ]; }; mach-nix.pythonSources = config.deps.fetchPythonRequirements { inherit python; name = config.public.name; requirementsList = ["${config.public.name}==${config.public.version}"]; hash = "sha256-Wdu4A9nFfVhHwj2rYrhb6A5xtZ2VytEc4F8Bo6kgFtg="; maxDate = "2023-01-01"; }; }